couch/core/Vertex.cpp
2021-01-13 10:42:57 -06:00

14 lines
173 B
C++

#include "Vertex.h"
Vertex::Vertex() {
x = 0.0f;
y = 0.0f;
z = 0.0f;
}
Vertex::Vertex(cfloat x, cfloat y, cfloat z) {
this->x = x;
this->y = y;
this->z = z;
}