Add compass
This commit is contained in:
parent
63fc0d1187
commit
e96d575312
3 changed files with 101 additions and 102 deletions
|
@ -83,13 +83,11 @@ const Accordion = forwardRef<AccordionRef, AccordionProps>(
|
|||
|
||||
return (
|
||||
<div>
|
||||
<h2 id="accordion-collapse-heading-1">
|
||||
<h2 id="accordion-collapse-heading">
|
||||
<button
|
||||
type="button"
|
||||
className={className}
|
||||
data-accordion-target="#accordion-collapse-body-1"
|
||||
aria-expanded={expanded ? "true" : "false"}
|
||||
aria-controls="accordion-collapse-body-1"
|
||||
onClick={handleClick}
|
||||
>
|
||||
<span>{title}</span>
|
||||
|
@ -114,9 +112,9 @@ const Accordion = forwardRef<AccordionRef, AccordionProps>(
|
|||
</button>
|
||||
</h2>
|
||||
<div
|
||||
id="accordion-collapse-body-1"
|
||||
id="accordion-collapse-body"
|
||||
ref={accordionBodyRef}
|
||||
aria-labelledby="accordion-collapse-heading-1"
|
||||
aria-labelledby="accordion-collapse-heading"
|
||||
className={expanded ? "" : "hidden"}
|
||||
>
|
||||
<div className="p-5 border border-gray-200 dark:border-gray-400 dark:bg-gray-700">
|
||||
|
@ -210,12 +208,11 @@ export function Form() {
|
|||
}
|
||||
|
||||
return (
|
||||
<div className="w-full max-h-full flex flex-col gap-2 dark:bg-gray-700">
|
||||
<div className="w-full h-full flex flex-col gap-3 p-2">
|
||||
<div className="w-full max-h-full min-h-0 flex flex-col gap-2 dark:bg-gray-700">
|
||||
<div className="w-full flex justify-end">
|
||||
<button
|
||||
onClick={handleExport}
|
||||
className="text-white bg-red-400 hover:bg-red-800 focus:ring-4 focus:ring-red-300 font-medium rounded-lg text-sm px-5 py-2.5 me-2 dark:bg-red-600 dark:hover:bg-red-700 focus:outline-none dark:focus:ring-red-800 hover:cursor-pointer"
|
||||
className="text-white bg-red-400 hover:bg-red-800 focus:ring-4 focus:ring-red-300 font-medium rounded-lg text-sm px-5 py-2.5 dark:bg-red-600 dark:hover:bg-red-700 focus:outline-none dark:focus:ring-red-800 hover:cursor-pointer"
|
||||
>
|
||||
Export as .obj
|
||||
</button>
|
||||
|
@ -301,6 +298,5 @@ export function Form() {
|
|||
</Accordion>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -10,9 +10,9 @@ export default function Home() {
|
|||
const [isFormOpen, setIsFormOpen] = useState<boolean>(false);
|
||||
|
||||
return (
|
||||
<div className="w-screen h-screen">
|
||||
<main className="h-screen">
|
||||
<SceneViewProvider>
|
||||
<div className="flex flex-col h-screen sm:flex-row">
|
||||
<div className="sm:hidden p-4 bg-white dark:bg-gray-700 shadow-md flex justify-between items-center">
|
||||
<span className="text-lg font-semibold text-gray-700 dark:text-gray-400">
|
||||
3D-Viewer
|
||||
|
@ -45,8 +45,8 @@ export default function Home() {
|
|||
<Form />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</SceneViewProvider>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -93,12 +93,12 @@ export function buildScene(container: HTMLElement, extent: Extent) {
|
|||
|
||||
// Create the AxesHelper (small size)
|
||||
axesHelper = new AxesHelper(0.1);
|
||||
axesHelper.position.set(-0.9, -0.8, 0);
|
||||
axesHelper.position.set(-0.85, -0.85, 0);
|
||||
|
||||
const xLabel = createTextSprite("X", "red");
|
||||
const yLabel = createTextSprite("Y", "green");
|
||||
const zLabel = createTextSprite("Z", "blue");
|
||||
xLabel.position.set(0.125, 0, 0);
|
||||
xLabel.position.set(0.125, -0.01, 0);
|
||||
yLabel.position.set(0, 0.125, 0);
|
||||
zLabel.position.set(0, 0, 0.125);
|
||||
|
||||
|
@ -120,16 +120,19 @@ function onWindowResize(container: HTMLElement) {
|
|||
}
|
||||
|
||||
function animate() {
|
||||
// axesHelper.quaternion.copy(camera.quaternion);
|
||||
// Set rotation of axes according to camera rotation
|
||||
let rot = new Euler();
|
||||
rot.x = -camera.rotation.x;
|
||||
rot.y = camera.rotation.y;
|
||||
rot.z = camera.rotation.z;
|
||||
rot.z = -camera.rotation.z;
|
||||
axesHelper.setRotationFromEuler(rot);
|
||||
|
||||
renderer.autoClear = true;
|
||||
renderer.render(scene, camera);
|
||||
|
||||
// Set autoclear to fasle in order to overlay UI elements
|
||||
renderer.autoClear = false;
|
||||
renderer.render(uiScene, uiCamera); // Render UI scene
|
||||
renderer.render(uiScene, uiCamera);
|
||||
|
||||
// required if controls.enableDamping or controls.autoRotate are set to true
|
||||
controls.update();
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue