MeshLib C++ Docs
Loading...
Searching...
No Matches
MR::ImGuiMath::detail::ValidOperands Concept Reference

#include <MRImGuiVectorOperators.h>

Concept definition

template<typename ... P>
concept MR::ImGuiMath::detail::ValidOperands = ( VectorOrScalarMaybeCvref<P> && ... ) && ( CommonVecSize<P...>::value > 1 )
Definition MRImGuiVectorOperators.h:52
Definition MRImGuiVectorOperators.h:23

Detailed Description

Whether P... are valid operands for a custom operator. All of them must be vectors and scalars (maybe cvref-qualified), and the common vector size must be defined and greater than 1.