From fc999f09b3b35fd40f7b08de44d12e2c9e5427fb Mon Sep 17 00:00:00 2001 From: philippun Date: Thu, 13 Jul 2023 10:15:18 +0200 Subject: [PATCH] change: Grid.hpp | added class and constructors --- include/tug/Grid.hpp | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/include/tug/Grid.hpp b/include/tug/Grid.hpp index e69de29..194182c 100644 --- a/include/tug/Grid.hpp +++ b/include/tug/Grid.hpp @@ -0,0 +1,35 @@ +#include +#include + +using namespace std; + +class Grid { + public: + /** + * @brief Construct a new Grid object + * + * @param n + */ + Grid(int n); + + /** + * @brief Construct a new Grid object + * + * @param n + * @param m + */ + Grid(int n, int m); + + /** + * @brief Set the Alpha object + * + * @param alpha + */ + void setAlpha(vector alpha); + + void setAlpha(vector alpha_x, vector alpha_y); + + private: + + +}; \ No newline at end of file