Vector3Clamp method

Vector3C Vector3Clamp(
  1. Vector3C v,
  2. Vector3C min,
  3. Vector3C max
)

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

Implementation

Vector3C Vector3Clamp(Vector3C v, Vector3C min, Vector3C max)
  => _Vector3Clamp(v, min, max);