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

A concept representing a 4D Point. More...

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

Concept definition

template<typename T>
concept vcl::Point4Concept = PointConcept<T> && RemoveRef<T>::DIM == 4
A concept representing a 4D Point.
Definition point.h:884
A concept representing a Point.
Definition point.h:843

Detailed Description

A concept representing a 4D Point.

The concept is satisfied when T is a class that instantiates or derives from a Point class having any scalar type and dimension 4.

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