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

Represent a generic vector of 3 floats. More...

#include <OxygenEngine/scene/transform.h>

Concept definition

template<class V>
concept oe::scene::Vector3Type = requires(V v)
{
{v.x} -> std::convertible_to<float>;
{v.y} -> std::convertible_to<float>;
{v.z} -> std::convertible_to<float>;
}
Represent a generic vector of 3 floats.
Definition transform.h:18

Detailed Description

Represent a generic vector of 3 floats.