Back to Aurora Vision Library website

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

Segments2DToSegments3D_AxesPlane


Header: AVL.h
Namespace: avl
Module: Vision3DLite

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

Syntax

C++
C#
 
void avl::Segments2DToSegments3D_AxesPlane
(
	const atl::Array<avl::Segment2D>& inSegments2D,
	avl::PlaneType::Type inPlaneType,
	float inCoordinateValue,
	atl::Array<avl::Segment3D>& outSegments3D,
	atl::Optional<avl::Plane3D&> outProjectionPlane = atl::NIL
)

Parameters

Name Type Default Description
Input value inSegments2D const Array<Segment2D>&
Input value inPlaneType PlaneType::Type
Input value inCoordinateValue float Coordinate of the chosen axes plane
Output value outSegments3D Array<Segment3D>&
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.