This commit is contained in:
Kseninia Mikhaylova 2024-10-02 15:34:46 +03:00
parent 6aa838b151
commit b14163bd3c
2 changed files with 2 additions and 3 deletions

View File

@ -9,8 +9,8 @@ const controlsState = reactive({
enableZoom: false, enableZoom: false,
minPolarAngle: degToRad(60), minPolarAngle: degToRad(60),
maxPolarAngle: degToRad(100), maxPolarAngle: degToRad(100),
minAzimuthAngle: degToRad(0), // minAzimuthAngle: degToRad(0),
maxAzimuthAngle: degToRad(180), // maxAzimuthAngle: degToRad(180),
}) })
const cameraStat = reactive({ const cameraStat = reactive({
position: [0, 0, 5], position: [0, 0, 5],

View File

@ -1,6 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { Vector3 } from 'three'; import { Vector3 } from 'three';
import { getColorNameFromRal } from '@/components/ral'
import type { ralTypes } from '@/components/ral' import type { ralTypes } from '@/components/ral'
import { predefLamelleColors, predefPillarColors } from '~/composables/useCalc'; import { predefLamelleColors, predefPillarColors } from '~/composables/useCalc';