Internal data structure for face representation index + smoothing group.
| 705 | // Internal data structure for face representation |
| 706 | // index + smoothing group. |
| 707 | struct face_t { |
| 708 | unsigned int |
| 709 | smoothing_group_id; // smoothing group id. 0 = smoothing groupd is off. |
| 710 | int pad_; |
| 711 | std::vector<vertex_index_t> vertex_indices; // face vertex indices. |
| 712 | |
| 713 | face_t() : smoothing_group_id(0), pad_(0) {} |
| 714 | }; |
| 715 | |
| 716 | // Internal data structure for line representation |
| 717 | struct __line_t { |
nothing calls this directly
no outgoing calls
no test coverage detected