Added reduced model class that handles the reduced model in terms of construction
This commit is contained in:
parent
643e8b35be
commit
38c2535a34
|
|
@ -0,0 +1,14 @@
|
||||||
|
#ifndef REDUCEDMODEL_HPP
|
||||||
|
#define REDUCEDMODEL_HPP
|
||||||
|
|
||||||
|
#include "trianglepatterngeometry.hpp"
|
||||||
|
|
||||||
|
class ReducedModel : public PatternGeometry
|
||||||
|
{
|
||||||
|
void constructReducedModelBaseTriangleGeometry();
|
||||||
|
|
||||||
|
public:
|
||||||
|
ReducedModel();
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // REDUCEDMODEL_HPP
|
||||||
Loading…
Reference in New Issue