volmetrics

view src/mesh.h @ 8:928954bfefd7

added mesh (draw: immediate mode - todo: displ. list)
author Eleni Maria Stea <elene.mst@gmail.com>
date Sat, 25 Jan 2014 19:25:32 +0200
parents
children 40febfed6cff
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();
20 void draw() const;
21 };
23 #endif // MESH_H_