Vector2ClampValue method

Vector2C Vector2ClampValue(
  1. Vector2C v,
  2. double min,
  3. double max
)

Clamp the magnitude of the vector between two min and max values

Implementation

Vector2C Vector2ClampValue(Vector2C v, double min, double max)
  => _Vector2ClampValue(v, min, max);