( reconstruction: Reconstruction, wasmReconstruction?: WasmReconstructionWrapper | null )
| 144 | * @param wasmReconstruction - Optional WASM wrapper (used to build points3D if not in reconstruction) |
| 145 | */ |
| 146 | export function exportPointsPLY( |
| 147 | reconstruction: Reconstruction, |
| 148 | wasmReconstruction?: WasmReconstructionWrapper | null |
| 149 | ): void { |
| 150 | const points3D = getPoints3DForExport(reconstruction, wasmReconstruction); |
| 151 | exportPointsPLYFile(() => writePointsPLY(points3D)); |
| 152 | } |
| 153 | |
| 154 | function createReconstructionZipFileWriters( |
| 155 | reconstruction: Reconstruction, |
nothing calls this directly
no test coverage detected