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

A concept representing a TexCoordIndexed. More...

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

Concept definition

template<typename T>
concept vcl::TexCoordIndexedConcept = std::derived_from<
std::remove_cvref_t<T>,
TexCoordIndexed<typename RemoveRef<T>::ScalarType>>
A concept representing a TexCoordIndexed.
Definition tex_coord_indexed.h:134

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.