Oxygen Engine
Modern C++ 3D Engine using OpenGL
Loading...
Searching...
No Matches
oe::scene::VertexPredicateFunction Concept Reference

A function taking vertex parameter that will return true if the predicate is true, false otherwise. More...

#include <OxygenEngine/scene/mesh.h>

Concept definition

template<class F, class V>
concept oe::scene::VertexPredicateFunction = requires(F f, V v)
{
{f(v)} -> std::same_as<bool>;
}
A function taking vertex parameter that will return true if the predicate is true,...
Definition mesh.h:20

Detailed Description

A function taking vertex parameter that will return true if the predicate is true, false otherwise.