MCPcopy Create free account
hub / github.com/LabSound/LabSound / float3

Method float3

include/LabSound/core/FloatPoint3D.h:12–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10{
11 float x {0.f}, y {0.f}, z {0.f};
12 float3(float x, float y, float z) : x(x), y(y), z(z) {};
13 float3() = default;
14 float & operator[](int i) { return (&x)[i]; }
15 const float & operator[](int i) const { return (&x)[i]; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected