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

A concept representing a Line. More...

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

Concept definition

template<typename T>
concept vcl::LineConcept = std::derived_from<
std::remove_cvref_t<T>,
Line<typename RemoveRef<T>::PointType>>
A concept representing a Line.
Definition line.h:159

Detailed Description

A concept representing a Line.

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

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