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

A concept representing a Box. More...

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

Concept definition

template<typename T>
concept vcl::BoxConcept = std::derived_from<
std::remove_cvref_t<T>,
Box<typename RemoveRef<T>::PointType>>
A concept representing a Box.
Definition box.h:531

Detailed Description

A concept representing a Box.

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

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