1 #include <iostream>
2 #include "../include/animorph/RawMesh.h"
3 
4 #ifdef DEBUG
5   #include <StopClock/StopClock.h>
6 #endif //DEBUG
7 
8 #include <assert.h>
9 
10 using namespace std;
11 using namespace Animorph;
12 
RawMesh()13 RawMesh::RawMesh()
14 : facevector    (),
15   vertexvector  (),
16   bodyfaces     (),
17   clothesgroup  (),
18   name()
19 {
20 }
21 
~RawMesh()22 RawMesh::~RawMesh()
23 {
24 
25 }
26