volmetrics

view src/mesh.h @ 9:40febfed6cff

rendering isosurfaces / added simple gui
author Eleni Maria Stea <elene.mst@gmail.com>
date Sun, 26 Jan 2014 23:13:37 +0200
parents 928954bfefd7
children
line source
1 #ifndef MESH_H_
2 #define MESH_H_
4 #include <vector>
5 #include "vector.h"
7 class Mesh {
8 private:
9 std::vector<Vector3> vertices;
10 std::vector<Vector3> normals;
12 public:
13 Mesh();
15 void add_vertex(const Vector3 &vertex);
16 void add_normal(const Vector3 &normal);
18 void clear();
19 bool is_empty() const;
21 void draw() const;
22 };
24 #endif // MESH_H_