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

A concept representing a Point. More...

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

Concept definition

template<typename T>
concept vcl::PointConcept = std::derived_from<
std::remove_cvref_t<T>,
Point<typename RemoveRef<T>::ScalarType, RemoveRef<T>::DIM>>
A concept representing a Point.
Definition point.h:843

Detailed Description

A concept representing a Point.

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

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