Package toxi.util.datatypes

Examples of toxi.util.datatypes.DoubleRange


     *
     * @param min
     * @param max
     */
    public void setInputRange(double min, double max) {
        in = new DoubleRange(min, max);
        interval = max - min;
    }
View Full Code Here


     *            new min output value
     * @param max
     *            new max output value
     */
    public void setOutputRange(double min, double max) {
        out = new DoubleRange(min, max);
        mapRange = max - min;
    }
View Full Code Here

TOP

Related Classes of toxi.util.datatypes.DoubleRange

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.