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

Concept for points in four-dimensional space. More...

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

Concept definition

template<typename T>
concept vcl::Point4Concept = PointConcept<T> && RemoveRef<T>::DIM == 4
Concept for points in four-dimensional space.
Definition point.h:146
Concept for types representing points in Euclidean space.
Definition point.h:40

Detailed Description

Concept for points in four-dimensional space.

A type satisfies this concept if it satisfies the vcl::PointConcept and if the DIM value of the point type is 4.

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