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

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

#include <vclib/mesh/components/concepts/textures.h>

Concept definition

template<typename T>
std::derived_from<std::remove_cvref_t<T>, TextureImages>
A concept that checks whether a type T (that should be a Mesh) has the TextureImages component (inher...
Definition textures.h:45

Detailed Description

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

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

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