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

AVL.LinePlaneIntersection3D

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inLine3DAvlNet.Line3D
inPlaneAvlNet.Plane3D
outIntersectionPointAvlNet.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