Back to Aurora Vision Library website

You are here: Start » Function Reference » Geometry 3D » Geometry 3D Spatial Transforms » Points3DToPoints2D_AxesPlane

Points3DToPoints2D_AxesPlane


Header: AVL.h
Namespace: avl
Module: Vision3DLite

Projects an array of 3D points onto a plane defined by coordinate axes.

Syntax

C++
C#
 
void avl::Points3DToPoints2D_AxesPlane
(
	const atl::Array<avl::Point3D>& inPoints3D,
	avl::PlaneType::Type inPlaneType,
	atl::Array<avl::Point2D>& outPoints2D,
	atl::Optional<avl::Plane3D&> outProjectionPlane = atl::NIL
)

Parameters

Name Type Default Description
Input value inPoints3D const Array<Point3D>&
Input value inPlaneType PlaneType::Type
Output value outPoints2D Array<Point2D>&
Output value outProjectionPlane Optional<Plane3D&> NIL Plane the input is projected onto

Optional Outputs

The computation of following outputs can be switched off by passing value atl::NIL to these parameters: outProjectionPlane.

Read more about Optional Outputs.