23#ifndef VCL_MESH_VIEWS_ELEMENTS_FACE_H
24#define VCL_MESH_VIEWS_ELEMENTS_FACE_H
26#include <vclib/mesh/requirements/face_requirements.h>
58 RemovePtr<typename std::ranges::iterator_t<Rng>::value_type>>>;
65 constexpr FacesView() =
default;
67 template<FaceMeshConcept R>
68 friend constexpr auto operator|(R&& r, FacesView)
84inline constexpr detail::FacesView
faces;
A concept that checks whether a class has (inherits from) an Face class.
Definition face.h:295
The FacePointerRangeConcept evaluates to true if Rng is a valid Range on Face Pointers.
Definition face.h:54
The FaceRangeConcept evaluates to true if Rng is a valid Range on Faces.
Definition face.h:40
The IsPointer concept is satisfied if T is a Pointer, even if the type T is a reference to a pointer.
Definition pointers.h:54
Utility concept that is evaluated true if T is a range, e.g. if has a begin and an end.
Definition range.h:39
constexpr detail::FacesView faces
A view that allows to iterate overt the Face elements of an object.
Definition face.h:84