couch/core/Vertex.cpp

14 lines
173 B
C++
Raw Normal View History

2021-01-13 10:42:57 -06:00
#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;
}