Click or drag to resize
Vector3XGetPointReflectedAcrossPlane Method
Gets the specified point reflected across a plane.

Namespace: Candlelight
Assembly: Assembly-CSharp-firstpass (in Assembly-CSharp-firstpass.dll) Version: 0.0.0.0
Syntax
C#
public static Vector3 GetPointReflectedAcrossPlane(
	this Vector3 p,
	Vector3 n
)

Parameters

p
Type: Vector3
Point to reflect.
n
Type: Vector3
Normal of the plane across which to reflect the point.

Return Value

Type: Vector3
The point reflected across 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