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

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

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

Concept definition

template<typename T>
concept vcl::Box2Concept = BoxConcept<T> && RemoveRef<T>::DIM == 2
A concept representing a 2D Box.
Definition box.h:546
A concept representing a Box.
Definition box.h:531

Detailed Description

A concept representing a 2D Box.

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

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