Vector3Ext.DistanceToSegment Method
Computes the distance from a point to a segment.
Namespace: UltimateXR.Extensions.Unity.Math
Assembly: UltimateXR (in UltimateXR.dll) Version: 0.0.0.0
Syntax
C#
public static float DistanceToSegment(
this Vector3 point,
Vector3 segmentA,
Vector3 segmentB
)
Parameters
- point
- Type: Vector3
The point to compute the distance from - segmentA
- Type: Vector3
Segment start point - segmentB
- Type: Vector3
Segment end point
Return Value
Type: Single
Distance from point to 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).