Java Float Number Clamp clamp(float n, float minValue, float maxValue)

Here you can find the source of clamp(float n, float minValue, float maxValue)

Description

clamp

License

Open Source License

Declaration

public static float clamp(float n, float minValue, float maxValue) 

Method Source Code

//package com.java2s;
/*//from w w  w  . j  ava 2 s.co m
This file is part of jpcsp.
    
Jpcsp is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
    
Jpcsp is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
    
You should have received a copy of the GNU General Public License
along with Jpcsp.  If not, see <http://www.gnu.org/licenses/>.
 */

public class Main {
    public static float clamp(float n, float minValue, float maxValue) {
        return max(minValue, min(n, maxValue));
    }

    public static int max(int a, int b) {
        return Math.max(a, b);
    }

    public static float max(float a, float b) {
        return Math.max(a, b);
    }

    public static int max(int a, int b, int c) {
        return Math.max(a, Math.max(b, c));
    }

    public static int min(int a, int b) {
        return Math.min(a, b);
    }

    public static float min(float a, float b) {
        return Math.min(a, b);
    }

    public static int min(int a, int b, int c) {
        return Math.min(a, Math.min(b, c));
    }
}

Related

  1. clamp(float f, float min, float max)
  2. clamp(float input, float min, float max)
  3. clamp(float min, float max, float val)
  4. clamp(float min, float max, float value)
  5. clamp(float min, float x, float max)
  6. clamp(float num, float min, float max)
  7. clamp(float v)
  8. clamp(float v, float min, float max)
  9. clamp(float val, float low, float high)