| 47 | #include <vector> |
| 48 | |
| 49 | struct Mesh { |
| 50 | std::vector<McDouble> vertices = {}; |
| 51 | std::vector<McUint32> faceIndices = {}; |
| 52 | std::vector<McUint32> faceSizes = {}; |
| 53 | McUint32 numVertices=0; |
| 54 | McUint32 numFaces=0; |
| 55 | }; |
| 56 | |
| 57 | struct IntersectionType { |
| 58 | McContext context = MC_NULL_HANDLE; |
nothing calls this directly
no outgoing calls
no test coverage detected