34 lines
883 B
Vue
34 lines
883 B
Vue
<script setup lang="ts">
|
|
import { TresCanvas } from '@tresjs/core'
|
|
import { OrbitControls } from '@tresjs/cientos'
|
|
|
|
const controlsState = reactive({
|
|
minDistance: 1,
|
|
maxDistance: 10,
|
|
enablePan: false,
|
|
enableZoom: false,
|
|
maxPolarAngle: (Math.PI / 2) - 0.2,
|
|
})
|
|
|
|
</script>
|
|
<template>
|
|
<div class="container min-w-full">
|
|
<TresCanvas shadows>
|
|
<TresPerspectiveCamera :position="[-7, 2, 4 ]" />
|
|
<OrbitControls v-bind="controlsState" make-default />
|
|
|
|
<ModelDiagram />
|
|
|
|
<TresDirectionalLight :position="[2, 2, 2]" :intensity="2" color="violet" cast-shadow />
|
|
<TresDirectionalLight :position="[2, 2, -2]" :intensity="1" color="red" cast-shadow />
|
|
<TresAmbientLight />
|
|
</TresCanvas>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
height: 600px;
|
|
display: block;
|
|
}
|
|
</style> |