apiMeshShape/apiMeshGeom.cpp
#include "apiMeshGeom.h"
apiMeshGeom::apiMeshGeom() : faceCount( 0 )
{}
apiMeshGeom::~apiMeshGeom() {}
apiMeshGeom& apiMeshGeom::operator=( const apiMeshGeom& other )
{
if ( &other != this ) {
vertices = other.vertices;
face_counts = other.face_counts;
face_connects = other.face_connects;
normals = other.normals;
uvcoords = other.uvcoords;
faceCount = other.faceCount;
}
return *this;
}