| 371 | //}; |
| 372 | |
| 373 | struct lines_t { |
| 374 | // Linear flattened indices. |
| 375 | std::vector<index_t> indices; // indices for vertices(poly lines) |
| 376 | std::vector<int> num_line_vertices; // The number of vertices per line. |
| 377 | }; |
| 378 | |
| 379 | struct points_t { |
| 380 | std::vector<index_t> indices; // indices for points |
nothing calls this directly
no outgoing calls
no test coverage detected