Back to Aurora Vision Library website

You are here: Start » Function Reference » All Functions » Geometry 3D Basics » AvsFilter_AccessBox3D

AvsFilter_AccessBox3D


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: AVL.h
Namespace: avs
Module: Vision3DLite

Returns individual fields of a box in 3D.

Syntax

void avs::AvsFilter_AccessBox3D
(
	const avl::Box3D& inBox3D,
	float& outX,
	float& outY,
	float& outZ,
	float& outXLength,
	float& outYLength,
	float& outZLength
)

Parameters

Name Type Default Description
Input value inBox3D const Box3D& Input box in 3D
Output value outX float& Input box x-coordinate
Output value outY float& Input box y-coordinate
Output value outZ float& Input box z-coordinate
Output value outXLength float& Length in X axis
Output value outYLength float& Length in Y axis
Output value outZLength float& Length in Z axis