sculpto
plane.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file plane.h
3 * \brief TOpology plane object class declaration module.
4 *
5 * \author Sabitov Kirill
6 * \date 08 July 2022
7 *********************************************************************/
8
9#pragma once
10
11#include "grid.h"
12
13namespace scl::topology
14{
16 class plane : public grid
17 {
18 public:
19 /*!*
20 * Topology plane object default constructor.
21 *
22 * \param Width, Height - plane size.
23 */
24 plane(int Width, int Height);
25
27 ~plane() override = default;
28 };
29}
~plane() override=default
plane(int Width, int Height)
Definition: plane.cpp:12
Topology grid object class definition module.