! Three-index vertex, indexing start at 0, -1 means invalid vertex. */
| 8 | { |
| 9 | /*! Three-index vertex, indexing start at 0, -1 means invalid vertex. */ |
| 10 | struct Vertex { |
| 11 | unsigned int v, vt, vn; |
| 12 | Vertex() {}; |
| 13 | Vertex(unsigned int v) : v(v), vt(v), vn(v) {}; |
| 14 | Vertex(unsigned int v, unsigned int vt, unsigned int vn) : v(v), vt(vt), vn(vn) {}; |
| 15 | }; |
| 16 | |
| 17 | struct Crease { |
| 18 | float w; |
no outgoing calls
no test coverage detected