Cosmetic: Newlines were corrected
[ode.git] / OPCODE / Ice / IceTriList.h
blob73f5257f2ce8f525d0ce8214b74dac2f18adbac4
1 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2 /**
3 * Contains code for a triangle container.
4 * \file IceTrilist.h
5 * \author Pierre Terdiman
6 * \date April, 4, 2000
7 */
8 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
10 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
11 // Include Guard
12 #ifndef __ICETRILIST_H__
13 #define __ICETRILIST_H__
15 class ICEMATHS_API TriList : public Container
17 public:
18 // Constructor / Destructor
19 TriList() {}
20 ~TriList() {}
22 inline_ udword GetNbTriangles() const { return GetNbEntries()/9; }
23 inline_ Triangle* GetTriangles() const { return (Triangle*)GetEntries(); }
25 void AddTri(const Triangle& tri)
27 Add(tri.mVerts[0].x).Add(tri.mVerts[0].y).Add(tri.mVerts[0].z);
28 Add(tri.mVerts[1].x).Add(tri.mVerts[1].y).Add(tri.mVerts[1].z);
29 Add(tri.mVerts[2].x).Add(tri.mVerts[2].y).Add(tri.mVerts[2].z);
32 void AddTri(const Point& p0, const Point& p1, const Point& p2)
34 Add(p0.x).Add(p0.y).Add(p0.z);
35 Add(p1.x).Add(p1.y).Add(p1.z);
36 Add(p2.x).Add(p2.y).Add(p2.z);
40 class ICEMATHS_API TriangleList : public Container
42 public:
43 // Constructor / Destructor
44 TriangleList() {}
45 ~TriangleList() {}
47 inline_ udword GetNbTriangles() const { return GetNbEntries()/3; }
48 inline_ IndexedTriangle* GetTriangles() const { return (IndexedTriangle*)GetEntries();}
50 void AddTriangle(const IndexedTriangle& tri)
52 Add((udword)tri.mVRef[0]).Add((udword)tri.mVRef[1]).Add((udword)tri.mVRef[2]);
55 void AddTriangle(udword vref0, udword vref1, udword vref2)
57 Add(vref0).Add(vref1).Add(vref2);
61 #endif //__ICETRILIST_H__