lerp method

Vector3 lerp(
  1. Vector3 other,
  2. double t
)

Implementation

Vector3 lerp(Vector3 other, double t) {
  return Vector3Utils.lerp(this, other, t);
}