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 "GeometryLibrary.h"
GeometryLibrary::GeometryLibrary(tinyxml2::XMLElement* xml)
{
auto xm = xml;
auto g = Geometry(xml->FirstChildElement("geometry"));
m_Geometries.push_back(g);
}