Click or drag to resize

GeometryIsInHalfPlane Method (Vector3, Vector3, Vector3)

Determines whether a point is in the half (3D, hyper) plane described by a point and direction.

Namespace:  Gamelogic.Extensions
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public static bool IsInHalfPlane(
	Vector3 point,
	Vector3 halfPlanePoint,
	Vector3 halfPlaneDirection
)

Parameters

point
Type: Vector3
The point to check.
halfPlanePoint
Type: Vector3
The half plane point.
halfPlaneDirection
Type: Vector3
The half plane direction.

Return Value

Type: Boolean
true if the point is in the half plane; otherwise, false.
See Also