Package org.xith3d.utility.math

Examples of org.xith3d.utility.math.FloatLowerLimiter


       
        KeyAdjustableFloat distAdjust = new KeyAdjustableFloat(Keys.UP,
                Keys.DOWN, .6f, opSched);
        new MemberConnection(this, "distance", distAdjust, "value", opSched);
       
        new FloatLowerLimiter(heightAdjust, "value", .4f, opSched);
        new FloatUpperLimiter(heightAdjust, "value", 8f, opSched);
        heightAdjust.setValue(1f);
       
        new FloatLowerLimiter(distAdjust, "value", .4f, opSched);
        new FloatUpperLimiter(distAdjust, "value", 5f, opSched);
        distAdjust.setValue(1f);
       
    }
View Full Code Here

TOP

Related Classes of org.xith3d.utility.math.FloatLowerLimiter

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.