(files: Map<string, File>)
| 141 | * Find the preferred splat file in a scanned dataset. |
| 142 | */ |
| 143 | export function findPreferredSplatFile(files: Map<string, File>): File | undefined { |
| 144 | const preferred = getLocalSplatCandidates(files).reduce<LocalSplatCandidate | null>( |
| 145 | getPreferredSplatCandidate, |
| 146 | null |
| 147 | ); |
| 148 | return preferred?.file; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Find the largest PLY file in a scanned dataset. |
no test coverage detected