Mercurial > hg > Game > Cerium
comparison TaskManager/Test/test_render/triangle.h @ 109:028ffc9c0375 draft
Cerium cvs version
author | gongo@gendarme.local |
---|---|
date | Wed, 12 Nov 2008 17:39:33 +0900 |
parents | |
children | dc7d10ae7460 |
comparison
equal
deleted
inserted
replaced
108:6f3b3dd3c095 | 109:028ffc9c0375 |
---|---|
1 #ifndef INCLUDE_Triangle | |
2 #define INCLUDE_Triangle | |
3 | |
4 #include "vertex.h" | |
5 | |
6 class Triangle { | |
7 public: | |
8 Vertex *vertex1,*vertex2,*vertex3; | |
9 | |
10 Triangle(Vertex *tmp_vertex1,Vertex *tmp_vertex2,Vertex *tmp_vertex3); | |
11 }; | |
12 | |
13 #endif |