| 15 | }; |
| 16 | |
| 17 | struct Crease { |
| 18 | float w; |
| 19 | unsigned int a, b; |
| 20 | Crease() : w(0), a(-1), b(-1) {}; |
| 21 | Crease(float w, unsigned int a, unsigned int b) : w(w), a(a), b(b) {}; |
| 22 | }; |
| 23 | |
| 24 | static inline bool operator < ( const Vertex& a, const Vertex& b ) { |
| 25 | if (a.v != b.v) return a.v < b.v; |