Back to Aurora Vision Library website

You are here: Start » Function Reference » Basic » Box » BoxIntersection

BoxIntersection


Header: AVL.h
Namespace: avl
Module: FoundationLite

Computes the common part of two boxes.

Syntax

C++
C#
 
void avl::BoxIntersection
(
	const avl::Box& inBox1,
	const avl::Box& inBox2,
	avl::Box& outBox
)

Parameters

Name Type Default Description
Input value inBox1 const Box&
Input value inBox2 const Box&
Output value outBox Box&

In-place Processing

This function supports in-place data processing - you can pass the same reference to inBox1 and outBox, inBox2 and outBox

Read more about In-place Computation.