|
|
|
@ -103,6 +103,7 @@ import { |
|
|
|
menuScrim, |
|
|
|
toggleConfirmedOnly, |
|
|
|
resetUIForNewLoad, |
|
|
|
explorerBtn, |
|
|
|
} from "./dom.js"; |
|
|
|
|
|
|
|
import { initializeTheme } from "./theme.js"; |
|
|
|
@ -1061,6 +1062,14 @@ canvasContainer.addEventListener('click', () => { |
|
|
|
displayInGrid(currentFrameData.pointCloud, `Frame ${appState.currentFrame} - Point Cloud`); |
|
|
|
} |
|
|
|
}); |
|
|
|
explorerBtn.addEventListener('click', () => { |
|
|
|
const panel = document.getElementById("data-explorer-panel"); |
|
|
|
if (panel.classList.contains("hidden")) { |
|
|
|
showExplorer(); |
|
|
|
} else { |
|
|
|
hideExplorer(); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
function calculateAndSetOffset() { |
|
|
|
const jsonTimestampInfo = extractTimestampInfo(appState.jsonFilename); |
|
|
|
|