You are here: Start » AVL.NET » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » AVL.ProjectPoint2DOntoPlane3D

AVL.ProjectPoint2DOntoPlane3D

Projects a point on a plane Z=0 onto a given plane, translating it parallel to Z axis.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void ProjectPoint2DOntoPlane3D
(
	AvlNet.Point2D inPoint2D,
	AvlNet.Plane3D inPlane,
	out AvlNet.Point3D outPointOnPlane
)

Parameters

Name Type Range Default Description
inPoint2DAvlNet.Point2D
inPlaneAvlNet.Plane3D
outPointOnPlaneAvlNet.Point3DPoint projected on a plane parallel to Z axis.

Errors

List of possible exceptions:

Error type Description
DomainError Indefinite plane on input in ProjectPoint2DOntoPlane3D.
DomainError Point cannot be projected in ProjectPoint2DOntoPlane3D.

See also