| 102 | #endif |
| 103 | |
| 104 | struct DebugLog { |
| 105 | McContext context_ = MC_NULL_HANDLE; |
| 106 | // 1. Create meshes. |
| 107 | // ----------------- |
| 108 | // Shape to Cut: |
| 109 | std::vector<McDouble> cubeVertices = {}; |
| 110 | std::vector<McUint32> cubeFaces = {}; |
| 111 | McInt32 numCubeVertices=0; |
| 112 | McInt32 numCubeFaces=0; |
| 113 | |
| 114 | std::vector<McUint32> cubeFaceSizes = {}; |
| 115 | |
| 116 | // Cutting Shape: |
| 117 | |
| 118 | std::vector<McDouble> cutMeshVertices = {}; |
| 119 | |
| 120 | std::vector<McUint32> cutMeshFaces = {}; |
| 121 | McUint32 numCutMeshVertices=0; |
| 122 | McUint32 numCutMeshFaces=0; |
| 123 | }; |
| 124 | |
| 125 | UTEST_F_SETUP(DebugLog) |
| 126 | { |
nothing calls this directly
no outgoing calls
no test coverage detected