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

A concept that checks whether a type T (that should be a Element) has the WedgeTexCoords component (inherits from it). More...

#include <vclib/mesh/components/wedge_tex_coords.h>

Concept definition

template<typename T>
TITB::IsDerivedFromSpecializationOfV<T, WedgeTexCoords>
A concept that checks whether a type T (that should be a Element) has the WedgeTexCoords component (i...
Definition wedge_tex_coords.h:399

Detailed Description

A concept that checks whether a type T (that should be a Element) has the WedgeTexCoords component (inherits from it).

The concept is satisfied if T is a class that inherits from vcl::comp::WedgeTexCoords, with any template arguments.

Note that this concept does not discriminate between the Horizontal WedgeTexCoords component and the vertical OptionalWedgeTexCoords component, therefore it does not guarantee that a template Element type that satisfies this concept provides WedgeTexCoords component at runtime (it is guaranteed only that the proper member functions are available at compile time).

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