AGL
A graphics library
point_mesh.h
1 // Copyright, 2020, Savvy Sine, Aline Normoyle
2 #ifndef AGL_MESH_POINT_MESH_H_
3 #define AGL_MESH_POINT_MESH_H_
4 
5 #include "agl/mesh.h"
6 
7 namespace agl {
8 
16 class PointMesh : public Mesh {
17  public:
25  virtual void render() const;
26 };
27 
28 } // namespace agl
29 #endif // AGL_MESH_POINT_MESH_H_
agl::PointMesh
Base class for drawing large numbers of points.
Definition: point_mesh.h:16
agl::PointMesh::render
virtual void render() const
Draw this mesh.
Definition: point_mesh.cpp:9
agl::Mesh
Base class for meshes.
Definition: mesh.h:18