| 1048 | typedef Vec3fa Vertex; |
| 1049 | |
| 1050 | struct Triangle |
| 1051 | { |
| 1052 | public: |
| 1053 | Triangle() {} |
| 1054 | Triangle (unsigned v0, unsigned v1, unsigned v2) |
| 1055 | : v0(v0), v1(v1), v2(v2) {} |
| 1056 | public: |
| 1057 | unsigned v0, v1, v2; |
| 1058 | }; |
| 1059 | |
| 1060 | public: |
| 1061 | TriangleMeshNode (const avector<Vertex>& positions_in, |
no outgoing calls
no test coverage detected