Java Float Number Clamp clampAngle(float value, float min, float max)

Here you can find the source of clampAngle(float value, float min, float max)

Description

Replies the value clamped in the specified interval assuming the it is a angle in radians.

License

Apache License

Parameter

Parameter Description
value is the value to clamp.
min is the minimal allowed value.
max is the maximal allowed value.

Return

the clamped value.

Declaration

@Deprecated
@SuppressWarnings("checkstyle:all")
public static float clampAngle(float value, float min, float max) 

Method Source Code

//package com.java2s;
/*/*  w ww . j a v  a  2 s. c o  m*/
 * $Id$
 * This file is a part of the Arakhne Foundation Classes, http://www.arakhne.org/afc
 *
 * Copyright (c) 2000-2012 Stephane GALLAND.
 * Copyright (c) 2005-10, Multiagent Team, Laboratoire Systemes et Transports,
 *                        Universite de Technologie de Belfort-Montbeliard.
 * Copyright (c) 2013-2016 The original authors, and other authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    /** Replies the {@code value} clamped in
     * the specified interval assuming the
     * it is a angle in radians.
     *
     * @param value is the value to clamp.
     * @param min is the minimal allowed value.
     * @param max is the maximal allowed value.
     * @return the clamped value.
     * @deprecated since 13.0, see {@link #clampCyclic(double, double, double)}
     */
    @Deprecated
    @SuppressWarnings("checkstyle:all")
    public static float clampAngle(float value, float min, float max) {
        assert (min <= max);
        float v = value;
        while (v > max) {
            v -= 2 * Math.PI;
        }
        if (v < min)
            return min;
        return v;
    }
}

Related

  1. clamp(float x, float y, float z)
  2. clamp180(float r1, float r2)
  3. clamp1f(float f)
  4. clamp360(float dir)
  5. clamp_float(float p_76131_0_, float p_76131_1_, float p_76131_2_)
  6. clampAngle(float var, float min, float max)
  7. clampBounds(float[] target, float[] clamp)
  8. clampColour(float value)
  9. clampDegree0To360(float degree)