stc
Loading...
Searching...
No Matches
stc::math::VectorType3D Concept Reference

#include <Math.hpp>

Concept definition

template<typename VT, typename IT>
concept stc::math::VectorType3D = requires (const VT& val) {
{ val.x } -> std::convertible_to<IT>;
{ val.y } -> std::convertible_to<IT>;
{ val.z } -> std::convertible_to<IT>;
}
Definition Math.hpp:52