You are here: Start » FIL.NET » Function Reference » Geometry 3D » Geometry 3D Intersections » FIL.LinePlaneIntersection3D

FIL.LinePlaneIntersection3D

Computes the intersection point of a line in 3D and a plane.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void LinePlaneIntersection3D
(
	FilNet.Line3D inLine3D,
	FilNet.Plane3D inPlane,
	out FilNet.Point3D? outIntersectionPoint
)

Parameters

Name Type Range Default Description
inLine3DFilNet.Line3D
inPlaneFilNet.Plane3D
outIntersectionPointFilNet.Point3D?

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite line on input in LinePlaneIntersection3D.
DomainError Indefinite plane on input in LinePlaneIntersection3D.

See also