This commit is contained in:
Youssef Assem
2019-12-18 23:09:56 +02:00
parent 733343b18b
commit bab419d197
12 changed files with 3504 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "COLLADA.h"
COLLADA::COLLADA(const char* filename)
{
tinyxml2::XMLDocument doc;
doc.LoadFile(filename);
tinyxml2::XMLElement* xml = doc.FirstChildElement("COLLADA");
m_GeometryLibrary = GeometryLibrary(xml->FirstChildElement("library_geometries"));
}