diff options
Diffstat (limited to 'cWiremesh.cpp')
-rw-r--r-- | cWiremesh.cpp | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/cWiremesh.cpp b/cWiremesh.cpp index 085f366..62fee0d 100644 --- a/cWiremesh.cpp +++ b/cWiremesh.cpp @@ -1,15 +1,8 @@ #include "cWiremesh.h" -cWiremesh::cWiremesh() -{ - position = {0,0,0}; - angle = {0,0,0}; -} +cWiremesh::cWiremesh() : position({0,0,0}), angle({0,0,0}) { } -cWiremesh::~cWiremesh() -{ - -} +cWiremesh::~cWiremesh() { } void cWiremesh::addVector(sCoord3d _origin, sCoord3d _vector, char _char, WORD _color) { |