Package barsuift.simLife.j3d.environment

Examples of barsuift.simLife.j3d.environment.Environment3DState


                univ3DState);
    }

    public static EnvironmentState createRandomEnvironmentState() {
        SunState sunState = createRandomSunState();
        Environment3DState env3DState = DisplayDataCreatorForTests.createRandomEnvironment3DState();
        return new EnvironmentState(sunState, env3DState);
    }
View Full Code Here


     *
     * @return
     */
    public static EnvironmentState createSpecificEnvironmentState() {
        SunState sunState = createSpecificSunState();
        Environment3DState env3DState = DisplayDataCreatorForTests.createSpecificEnvironment3DState();
        return new EnvironmentState(sunState, env3DState);
    }
View Full Code Here

    public static Sun3DState createSpecificSun3DState() {
        return new Sun3DState();
    }

    public static Environment3DState createRandomEnvironment3DState() {
        return new Environment3DState();
    }
View Full Code Here

    public static Environment3DState createRandomEnvironment3DState() {
        return new Environment3DState();
    }

    public static Environment3DState createSpecificEnvironment3DState() {
        return new Environment3DState();
    }
View Full Code Here

    public EnvironmentState createEnvironmentState() {
        SunStateFactory sunStateFactory = new SunStateFactory();
        SunState sunState = sunStateFactory.createSunState();
        Environment3DStateFactory env3DStateFactory = new Environment3DStateFactory();
        Environment3DState env3DState = env3DStateFactory.createEnvironment3DState();
        return new EnvironmentState(sunState, env3DState);
    }
View Full Code Here

    private Environment3DState environment3DState;

    public EnvironmentState() {
        this.sunState = new SunState();
        this.environment3DState = new Environment3DState();
    }
View Full Code Here

TOP

Related Classes of barsuift.simLife.j3d.environment.Environment3DState

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.