1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
| <template> <div ref="threeContainer" class="three-container"></div> </template> <script setup> import { onMounted, ref } from "vue"; import * as THREE from "three"; import { OrbitControls } from "three/examples/jsm/controls/OrbitControls.js";
const threeContainer = ref(null);
function init3D() { const scene = new THREE.Scene(); const camera = new THREE.PerspectiveCamera(75, threeContainer.value.clientWidth / threeContainer.value.clientHeight, 0.1, 1000); camera.position.set(0, 3, 4); const renderer = new THREE.WebGLRenderer({ antialias: true }); renderer.setSize(threeContainer.value.clientWidth, threeContainer.value.clientHeight); renderer.setPixelRatio(window.devicePixelRatio); threeContainer.value.appendChild(renderer.domElement); renderer.shadowMap.enabled = true; renderer.shadowMap.type = THREE.PCFSoftShadowMap;
const ambientLight = new THREE.AmbientLight(0x404040); scene.add(ambientLight); const directionalLight = new THREE.DirectionalLight(0xffffff, 0.5); directionalLight.position.y = 200; directionalLight.position.x = 200; directionalLight.castShadow = true; scene.add(directionalLight);
const sphereGeometry = new THREE.SphereGeometry(0.5, 32, 32); const sphereMaterial = new THREE.MeshStandardMaterial({ color: 0x00ff00, }); const sphere = new THREE.Mesh(sphereGeometry, sphereMaterial); sphere.position.set(0, 1, 0); sphere.castShadow = true; sphere.receiveShadow = true; scene.add(sphere);
const planeGeometry = new THREE.PlaneGeometry(5, 5); const planeMaterial = new THREE.MeshStandardMaterial({ color: 0xffffff, side: THREE.DoubleSide, }); const plane = new THREE.Mesh(planeGeometry, planeMaterial); plane.rotation.x = Math.PI / 2; plane.receiveShadow = true; scene.add(plane);
const controls = new OrbitControls(camera, renderer.domElement); controls.enableDamping = true; controls.dampingFactor = 0.05;
function animate() { requestAnimationFrame(animate); controls.update(); renderer.render(scene, camera); } animate(); }
onMounted(() => { init3D(); }); </script> <style scoped> .three-container { width: 100vw; height: calc(100vh - 20px); } </style>
|