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

A concept representing a Plane. More...

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

Concept definition

template<typename T>
concept vcl::PlaneConcept = std::derived_from<
std::remove_cvref_t<T>,
Plane<typename RemoveRef<T>::ScalarType, RemoveRef<T>::NORMED>>
A concept representing a Plane.
Definition plane.h:198

Detailed Description

A concept representing a Plane.

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

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