lerpUnclamped static method

Vector3 lerpUnclamped(
  1. Vector3 min,
  2. Vector3 max,
  3. double x
)

Implementation

static Vector3 lerpUnclamped(Vector3 min, Vector3 max, double x) {
  return min + (max - min) * x;
}