|
Revision 13041, 1.5 kB
(checked in by robert, 14 months ago)
|
|
Ran script to remove trailing spaces and tabs
|
-
Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 | #ifndef _3DS_WRITER_COMPARE_TRIANGLE_HEADER__ |
|---|
| 2 | #define _3DS_WRITER_COMPARE_TRIANGLE_HEADER__ |
|---|
| 3 | |
|---|
| 4 | #include <osg/Geode> |
|---|
| 5 | #include <osg/Geometry> |
|---|
| 6 | #include <iostream> |
|---|
| 7 | |
|---|
| 8 | struct Triangle |
|---|
| 9 | { |
|---|
| 10 | unsigned int t1; |
|---|
| 11 | unsigned int t2; |
|---|
| 12 | unsigned int t3; |
|---|
| 13 | unsigned int material; |
|---|
| 14 | }; |
|---|
| 15 | |
|---|
| 16 | class WriterCompareTriangle { |
|---|
| 17 | public: |
|---|
| 18 | WriterCompareTriangle(const osg::Geode& geode, |
|---|
| 19 | unsigned int nbVertices); |
|---|
| 20 | |
|---|
| 21 | bool operator()(const std::pair<Triangle, int>& t1, |
|---|
| 22 | const std::pair<Triangle, int>& t2) const; |
|---|
| 23 | private: |
|---|
| 24 | void |
|---|
| 25 | setMaxMin(unsigned int& nbVerticesX, |
|---|
| 26 | unsigned int& nbVerticesY, |
|---|
| 27 | unsigned int& nbVerticesZ) const; |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | void |
|---|
| 35 | cutscene(int nbVertices, |
|---|
| 36 | const osg::BoundingBox& sceneBox); |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | int inWhichBox(const osg::Vec3::value_type x, |
|---|
| 44 | const osg::Vec3::value_type y, |
|---|
| 45 | const osg::Vec3::value_type z) const; |
|---|
| 46 | |
|---|
| 47 | const osg::Geode& geode; |
|---|
| 48 | std::vector<osg::BoundingBox> boxList; |
|---|
| 49 | }; |
|---|
| 50 | |
|---|
| 51 | #endif // _3DS_WRITER_COMPARE_TRIANGLE_HEADER__ |
|---|