From 38c2535a3474c068221ee7d57b61a22b47c65ae9 Mon Sep 17 00:00:00 2001 From: iasonmanolas Date: Thu, 27 Jan 2022 14:45:16 +0200 Subject: [PATCH] Added reduced model class that handles the reduced model in terms of construction --- reducedmodel.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 reducedmodel.hpp diff --git a/reducedmodel.hpp b/reducedmodel.hpp new file mode 100644 index 0000000..5afe241 --- /dev/null +++ b/reducedmodel.hpp @@ -0,0 +1,14 @@ +#ifndef REDUCEDMODEL_HPP +#define REDUCEDMODEL_HPP + +#include "trianglepatterngeometry.hpp" + +class ReducedModel : public PatternGeometry +{ + void constructReducedModelBaseTriangleGeometry(); + +public: + ReducedModel(); +}; + +#endif // REDUCEDMODEL_HPP