Java Lerp lerp(final double a, final double min, final double max)

Here you can find the source of lerp(final double a, final double min, final double max)

Description

lerp

License

MIT License

Declaration

public static double lerp(final double a, final double min, final double max) 

Method Source Code

//package com.java2s;
/*//from ww w  .j a  va2s . co m
 *  This file is part of Tall Worlds, licensed under the MIT License (MIT).
 *
 *  Copyright (c) 2014 Tall Worlds
 *
 *  Permission is hereby granted, free of charge, to any person obtaining a copy
 *  of this software and associated documentation files (the "Software"), to deal
 *  in the Software without restriction, including without limitation the rights
 *  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 *  copies of the Software, and to permit persons to whom the Software is
 *  furnished to do so, subject to the following conditions:
 *
 *  The above copyright notice and this permission notice shall be included in
 *  all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 *  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 *  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 *  THE SOFTWARE.
 */

public class Main {
    public static double lerp(final double a, final double min, final double max) {
        return min + a * (max - min);
    }
}

Related

  1. lerp(double min, double max, double val)
  2. lerp(double start, double distance, double factor)
  3. lerp(double v1, double v2, double amt)
  4. lerp(double x, double x1, double x2, double q00, double q01)
  5. lerp(double x, double x1, double x2, double q00, double q01)
  6. lerp(final double percent, final int startColor, final int endColor)
  7. lerp(final float a, final float b, final float f)
  8. lerp(final float percent, final float startValue, final float endValue)
  9. lerp(final float x, final float x1, final float x2, final float q00, final float q01)