Added reduced model class that handles the reduced model in terms of construction

This commit is contained in:
iasonmanolas 2022-01-27 14:45:16 +02:00
parent 643e8b35be
commit 38c2535a34
1 changed files with 14 additions and 0 deletions

14
reducedmodel.hpp Normal file
View File

@ -0,0 +1,14 @@
#ifndef REDUCEDMODEL_HPP
#define REDUCEDMODEL_HPP
#include "trianglepatterngeometry.hpp"
class ReducedModel : public PatternGeometry
{
void constructReducedModelBaseTriangleGeometry();
public:
ReducedModel();
};
#endif // REDUCEDMODEL_HPP