MCPcopy Create free account
hub / github.com/atraczyk/2d-engine / Vector4

Method Vector4

engine/src/vector.cpp:150–156  ·  view source on GitHub ↗

Vector4

Source from the content-addressed store, hash-verified

148
149//Vector4
150Vector4::Vector4(float _x, float _y, float _z, float _w)
151{
152 x = _x;
153 y = _y;
154 z = _z;
155 w = _w;
156}
157
158Vector4::~Vector4(void)
159{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected