Examples of Physics3DStateFactory


Examples of barsuift.simLife.j3d.universe.physic.Physics3DStateFactory

public class PhysicsStateFactory {

    public PhysicsState createPhysicsState() {
        GravityStateFactory gravityFactory = new GravityStateFactory();
        GravityState gravity = gravityFactory.createGravityState();
        Physics3DStateFactory physics3DFactory = new Physics3DStateFactory();
        Physics3DState physics3D = physics3DFactory.createPhysics3DState();
        return new PhysicsState(gravity, physics3D);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.