Flow Visualisation
Square.h
Go to the documentation of this file.
1 //
2 // Square.h
3 // flowviz
4 //
5 // Created by Johann Götz on 02.06.15.
6 // Copyright (c) 2015 Johann Götz. All rights reserved.
7 //
8 
9 #ifndef __flowviz__Square__
10 #define __flowviz__Square__
11 
12 #include <stdio.h>
13 
14 #include "Geometry.h"
15 #include "VertexGeometry.h"
16 
17 namespace objects {
18 
19  class Square
20  {
21  private:
22  VertexGeometry m_vertexGeometry;
23  render::Geometry *m_geometry;
24 
25  public:
26  Square();
27  ~Square();
28 
30  };
31 
32 }
33 
34 #endif /* defined(__flowviz__Square__) */
Stores all model information.
Definition: VertexGeometry.h:22
Square()
Definition: Square.cpp:14
Definition: Square.h:19
~Square()
Definition: Square.cpp:47
render::Geometry * get_geometry()
Definition: Square.cpp:56
Represents a 3D Object in OpenGL.
Definition: Geometry.h:26
Definition: Arrow.h:16