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

A concept representing a Triangle. More...

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

Concept definition

template<typename T>
std::derived_from<
std::remove_cvref_t<T>,
Triangle<typename RemoveRef<T>::PointType>> ||
std::derived_from<
std::remove_cvref_t<T>,
TriangleWrapper<typename RemoveRef<T>::PointType>>
A concept representing a Triangle.
Definition triangle_wrapper.h:272

Detailed Description

A concept representing a Triangle.

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

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