Readonly
xReadonly
yReadonly
zComputes the angle (in radians) between the current vector and another vector.
Optional
y: numberOptional
z: numberThe angle in radians between the two vectors. To convert to degrees, use: angleInDegrees = angleInRadians * (180 / Math.PI).
Computes the squared distance between the current vector and another vector. This is faster than computing the actual distance and can be useful for comparison purposes.
Optional
y: numberOptional
z: numberThe squared distance between the two vectors.
Calculates the shortest distance between a point (represented by this Vector3 instance) and a line segment.
This method finds the perpendicular projection of the point onto the line defined by the segment. If this projection lies outside the line segment, then the method calculates the distance from the point to the nearest segment endpoint.
The starting point of the line segment.
The ending point of the line segment.
The shortest distance between the point and the line segment.
Computes the projection of the current vector onto another vector.
This method finds how much of the current vector lies in the direction of vector v
.
Optional
y: numberOptional
z: numberA new vector representing the projection of the current vector onto v
.
Static
fromStatic
from
Adds another vector to the current vector.