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

A concept representing a TexCoordIndexed. More...

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

Concept definition

template<typename T>
concept vcl::TexCoordConcept = std::derived_from<
std::remove_cvref_t<T>,
TexCoord<typename RemoveRef<T>::ScalarType>>
A concept representing a TexCoordIndexed.
Definition tex_coord.h:141

Detailed Description

A concept representing a TexCoordIndexed.

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

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