Visual Computing Library  devel
Loading...
Searching...
No Matches
vcl::Box3Concept Concept Reference

A concept representing a 3D Box. More...

#include <vclib/space/core/box.h>

Concept definition

template<typename T>
concept vcl::Box3Concept = BoxConcept<T> && RemoveRef<T>::DIM == 3
A concept representing a 3D Box.
Definition box.h:559
A concept representing a Box.
Definition box.h:531

Detailed Description

A concept representing a 3D Box.

The concept is satisfied when T is a class that instantiates or derives from a Box class having a Point type with dimension 3.

Template Parameters
TThe type to be tested for conformity to the Box2Concept.