Vector2Clamp method

Vector2C Vector2Clamp(
  1. Vector2C v,
  2. Vector2C min,
  3. Vector2C max
)

Clamp the components of the vector between min and max values specified by the given vectors

Implementation

Vector2C Vector2Clamp(Vector2C v, Vector2C min, Vector2C max)
  => _Vector2Clamp(v, min, max);