Package com.ardor3d.scenegraph.controller.interpolation

Examples of com.ardor3d.scenegraph.controller.interpolation.LinearVector3InterpolationController


        final Point point = new Point("point", vectors, null, null, null);
        point.setPointSize(10f);
        _root.attachChild(point);

        // Create our controller
        final LinearVector3InterpolationController controller = new LinearVector3InterpolationController();
        controller.setControls(vectors);
        controller.setActive(true);
        controller.setSpeed(1.0);

        return controller;
    }
View Full Code Here

TOP

Related Classes of com.ardor3d.scenegraph.controller.interpolation.LinearVector3InterpolationController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.