MCPcopy Create free account
hub / github.com/RobLoach/raylib-cpp / Vector4

Method Vector4

include/Vector4.hpp:23–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21class Vector4 : public ::Vector4 {
22public:
23 constexpr Vector4(const ::Vector4& vec) : ::Vector4{vec.x, vec.y, vec.z, vec.w} {}
24 explicit constexpr Vector4(const raylib::Quaternion quat) : ::Vector4{quat.x, quat.y, quat.z, quat.w} {}
25
26 explicit constexpr Vector4(const float x = 0, const float y = 0, const float z = 0, const float w = 0) : ::Vector4{x, y, z, w} {}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected