MCPcopy Create free account
hub / github.com/ThePhD/sol2 / vector3

Method vector3

tests/run_time/source/usertypes.constructors.cpp:106–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104 class vector3 {
105 public:
106 vector3() : x(0), y(0), z(0) {
107 }
108 vector3(float x, float y, float z) : x(x), y(y), z(z) {
109 }
110 vector3(const vector2& _vector2, float z) : x(_vector2.x), y(_vector2.y), z(z) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected