Click or drag to resize

Vector3Lerp Method

Overload List
  NameDescription
Public methodLerp(Vector3, Double)
Linear interpolation between this Vector3 and another Vector3

This is most commonly used to find a point some fraction of the way along a line between two endpoints When t = 0 returns this. When t = 1 returns b. When t = 0.5 returns the point midway between this and b.

Public methodStatic memberLerp(Vector3, Vector3, Double)
Linear interpolation between two Vector3s

This is most commonly used to find a point some fraction of the way along a line between two endpoints When t = 0 returns a. When t = 1 returns b. When t = 0.5 returns the point midway between a and b.

Public methodStatic memberLerp(Vector3, Vector3, Single)
Linear interpolation between two Vector3s

This is most commonly used to find a point some fraction of the way along a line between two endpoints When t = 0 returns a. When t = 1 returns b. When t = 0.5 returns the point midway between a and b.

Top
See Also