Examples of Sun3DState


Examples of barsuift.simLife.j3d.environment.Sun3DState

    public static SunState createRandomSunState() {
        BigDecimal brightness = UtilDataCreatorForTests.createRandomBigDecimal();
        BigDecimal riseAngle = UtilDataCreatorForTests.createRandomBigDecimal();
        BigDecimal zenithAngle = UtilDataCreatorForTests.createRandomBigDecimal();
        Sun3DState sun3DState = DisplayDataCreatorForTests.createRandomSun3DState();
        return new SunState(brightness, riseAngle, zenithAngle, sun3DState);
    }
View Full Code Here

Examples of barsuift.simLife.j3d.environment.Sun3DState

     */
    public static SunState createSpecificSunState() {
        BigDecimal brightness = PercentHelper.getDecimalValue(70);
        BigDecimal riseAngle = PercentHelper.getDecimalValue(25);
        BigDecimal zenithAngle = PercentHelper.getDecimalValue(50);
        Sun3DState sun3DState = DisplayDataCreatorForTests.createSpecificSun3DState();
        return new SunState(brightness, riseAngle, zenithAngle, sun3DState);
    }
View Full Code Here

Examples of barsuift.simLife.j3d.environment.Sun3DState

        return new Transform3DState(transform);
    }


    public static Sun3DState createRandomSun3DState() {
        return new Sun3DState();
    }
View Full Code Here

Examples of barsuift.simLife.j3d.environment.Sun3DState

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

    public static Sun3DState createSpecificSun3DState() {
        return new Sun3DState();
    }
View Full Code Here

Examples of barsuift.simLife.j3d.environment.Sun3DState

    public SunState createSunState() {
        BigDecimal brightness = PercentHelper.getDecimalValue(100);
        BigDecimal riseAngle = PercentHelper.getDecimalValue(25);
        BigDecimal zenithAngle = PercentHelper.getDecimalValue(50);
        Sun3DStateFactory sun3DStateFactory = new Sun3DStateFactory();
        Sun3DState sun3DState = sun3DStateFactory.createSpecificSun3DState();
        return new SunState(brightness, riseAngle, zenithAngle, sun3DState);
    }
View Full Code Here

Examples of barsuift.simLife.j3d.environment.Sun3DState

    public SunState() {
        super();
        this.brightness = new BigDecimal(0);
        this.riseAngle = new BigDecimal(0);
        this.zenithAngle = new BigDecimal(0);
        this.sun3DState = new Sun3DState();
    }
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.