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

Method vector2

tests/run_time/source/usertypes.constructors.cpp:66–67  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64 class vector2 {
65 public:
66 vector2() : x(0), y(0) {
67 }
68 vector2(float x, float y) : x(x), y(y) {
69 }
70 vector2(const vector2& _vector2) : x(_vector2.x), y(_vector2.y) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected