blob: 4c25e4802cbd96fcc6d71fae4018845c9c2c76fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "modelFactory.h"
#include "cuboid.h"
#include "cylinder.h"
#include "modelFactoryMesh_fwd.h"
#include "plane.h"
ModelFactory::ModelFactory() :
shapes {
{"plane", std::make_shared<Plane>()},
{"cuboid", std::make_shared<Cuboid>()},
{"cylinder", std::make_shared<Cylinder>()},
}
{
}
|