Function clampInto

  • Clamps the values of the two-element vector a so that they are not less than min and not greater than max, and stores the result in b

    Parameters

    • a: Vec2

      a 2-element vector object

    • min: number

      the minimum value allowed

    • max: number

      the maximum value allowed

    • b: Vec2

      a 2-element vector in which to store the result

    Returns Vec2

    b as a clamped to [min, max]

Generated using TypeDoc