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

Evaluates to true if the type T is tied to the number of vertices in the face. More...

Concept definition

template<typename T>
ComponentConcept<T> && RemoveRef<T>::TIED_TO_VERTEX_NUMBER
The ComponentConcept is evaluated to true whenever the type T is a valid component,...
Definition component.h:44
Evaluates to true if the type T is tied to the number of vertices in the face.
Definition component.h:124

Detailed Description

Evaluates to true if the type T is tied to the number of vertices in the face.

A component that is tied to the vertex number if it belongs to a face element and its data is composed of a number of elements that must be equal to the number of vertices in the face.

To be evaluated as true, the component must have a static constexpr member TIED_TO_VERTEX_NUMBER of type bool set to true.

Template Parameters
Tthe type to be evaluated.