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
.
The vector onto which the current vector will be projected.
A new vector representing the projection of the current vector onto v
.
Computes the reflection of the current vector against a normal vector. Useful for simulating light reflections or bouncing objects.
The normal vector against which the current vector will be reflected.
A new vector representing the reflection of the current vector.
Static
fromStatic
from
Adds another vector to the current vector.