AGL
A graphics library
line_mesh.h
1 // Copyright, 2020, Savvy Sine, Aline Normoyle
2 #ifndef AGL_MESH_LINE_MESH_H_
3 #define AGL_MESH_LINE_MESH_H_
4 
5 #include "agl/mesh.h"
6 
7 namespace agl {
8 
16 class LineMesh : Mesh {
17  public:
18  virtual ~LineMesh();
19 
27  virtual void render() const;
28 };
29 
30 } // namespace agl
31 #endif // AGL_MESH_LINE_MESH_H_
agl::LineMesh
Base class for meshes.
Definition: line_mesh.h:16
agl::Mesh
Base class for meshes.
Definition: mesh.h:18
agl::LineMesh::render
virtual void render() const
Draw this mesh.
Definition: line_mesh.cpp:9