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

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

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

Concept definition

template<typename T>
concept vcl::Point3Concept = PointConcept<T> && RemoveRef<T>::DIM == 3
A concept representing a 3D Point.
Definition point.h:871
A concept representing a Point.
Definition point.h:843

Detailed Description

A concept representing a 3D Point.

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

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