Vector3Ext.DistanceToLine Method

Computes the distance from a point to a line.

Namespace: UltimateXR.Extensions.Unity.Math
Assembly: UltimateXR (in UltimateXR.dll) Version: 0.0.0.0

Syntax

C#

public static float DistanceToLine(
	this Vector3 point,
	Vector3 lineA,
	Vector3 lineB
)

Parameters

 

point
Type: Vector3
The point to compute the distance from
lineA
Type: Vector3
Point A in the line
lineB
Type: Vector3
Point B in the line

Return Value

Type: Single
Distance from point to the line

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).

See Also

Reference

Vector3Ext Class
UltimateXR.Extensions.Unity.Math Namespace