Vector3Ext.DistanceToPlane Method

Computes the signed distance from a point to a plane.

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

Syntax

C#

public static float DistanceToPlane(
	this Vector3 point,
	Vector3 planePoint,
	Vector3 planeNormal
)

Parameters

 

point
Type: Vector3
The point to compute the distance from
planePoint
Type: Vector3
Point in a plane
planeNormal
Type: Vector3
Plane normal

Return Value

Type: Single
Signed distance from a point to a plane

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