RayPlaneIntersection

Namespace: JigLibX.Geometry
Assembly: JigLibX (in JigLibX.dll) Version: 0.3.1.0

Syntax

C#
public static bool RayPlaneIntersection(
	out float t,
	Ray ray,
	Plane plane
)
Visual Basic
Public Shared Function RayPlaneIntersection ( _
	<OutAttribute> ByRef t As Single, _
	ray As Ray, _
	plane As Plane _
) As Boolean
Visual C++
public:
static bool RayPlaneIntersection(
	[OutAttribute] float% t, 
	Ray ray, 
	Plane^ plane
)

Parameters

t
Type: System..::..Single%

[Missing <param name="t"/> documentation for "M:JigLibX.Geometry.Intersection.RayPlaneIntersection(System.Single@,JigLibX.Geometry.Ray,JigLibX.Geometry.Plane)"]

ray
Type: JigLibX.Geometry..::..Ray

[Missing <param name="ray"/> documentation for "M:JigLibX.Geometry.Intersection.RayPlaneIntersection(System.Single@,JigLibX.Geometry.Ray,JigLibX.Geometry.Plane)"]

plane
Type: JigLibX.Geometry..::..Plane

[Missing <param name="plane"/> documentation for "M:JigLibX.Geometry.Intersection.RayPlaneIntersection(System.Single@,JigLibX.Geometry.Ray,JigLibX.Geometry.Plane)"]

Return Value

bool

See Also