Internal data structure for points representation
| 723 | |
| 724 | // Internal data structure for points representation |
| 725 | struct __points_t { |
| 726 | // p v1 v2 ... |
| 727 | // In the specification, point primitrive does not have normal index and |
| 728 | // texture coord index, but TinyObjLoader allow it. |
| 729 | std::vector<vertex_index_t> vertex_indices; |
| 730 | }; |
| 731 | |
| 732 | struct tag_sizes { |
| 733 | tag_sizes() : num_ints(0), num_reals(0), num_strings(0) {} |
nothing calls this directly
no outgoing calls
no test coverage detected