sculpto
full_screen_quad.h
Go to the documentation of this file.
1/*!****************************************************************//*!*
2 * \file full_screen_quad.h
3 * \brief TOpology full screen quad 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 full_screen_quad: public grid
17 {
18 public:
19 /*!*
20 * Topology full screen quad object default constructor.
21 *
22 * \param Width, Height - full_screen_quad size.
23 */
25
27 ~full_screen_quad() override = default;
28 };
29}
30
~full_screen_quad() override=default
Topology grid object class definition module.