Vector3Ext.GetClosestPointFromSegment Method
Computes the closest point in a segment to another point.
Namespace: UltimateXR.Extensions.Unity.Math
Assembly: UltimateXR (in UltimateXR.dll) Version: 0.0.0.0
Syntax
C#
public static Vector3 GetClosestPointFromSegment(
this Vector3 point,
Vector3 segmentA,
Vector3 segmentB
)
Parameters
- point
- Type: Vector3
The point to compute the distance to - segmentA
- Type: Vector3
Segment start point - segmentB
- Type: Vector3
Segment end point
Return Value
Type: Vector3
Closest point in the segment
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Vector3. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).