#include "morphmesh.h" morphmesh::morphmesh() { //ctor } morphmesh::~morphmesh() { //dtor } bool morphmesh::loadmesh(string filename){ bool loaded=false; ofxXmlSettings XML; if( !XML.loadFile(filename) ){ printf("unable to load %s check data/ folder\n",filename.c_str()); }else{ if(XML.pushTag("MeshList")) { int verts=ofToInt(XML.getAttribute("mesh","VertexCount","none",0)); int numMeshes=XML.getNumTags("Mesh"); } } return loaded; }