File tree Expand file tree Collapse file tree 1 file changed +16
-22
lines changed
Expand file tree Collapse file tree 1 file changed +16
-22
lines changed Original file line number Diff line number Diff line change 1- import {
2- BoxGeometry ,
3- BufferGeometry ,
4- Controls ,
5- CylinderGeometry ,
6- DoubleSide ,
7- Euler ,
8- Float32BufferAttribute ,
9- Line ,
10- LineBasicMaterial ,
11- Matrix4 ,
12- Mesh ,
13- MeshBasicMaterial ,
14- Object3D ,
15- OctahedronGeometry ,
16- PlaneGeometry ,
17- Quaternion ,
18- Raycaster ,
19- SphereGeometry ,
20- TorusGeometry ,
21- Vector3 ,
22- } from "three"
1+ import { Float32BufferAttribute } from "@/core/BufferAttribute"
2+ import { BufferGeometry } from "@/core/BufferGeometry"
3+ import { Object3D } from "@/core/Object3D"
4+ import { Raycaster } from "@/core/Raycaster"
5+ import { Controls } from "@/extras/Controls"
6+ import { BoxGeometry } from "@/geometries/BoxGeometry"
7+ import { CylinderGeometry } from "@/geometries/CylinderGeometry"
8+ import { OctahedronGeometry } from "@/geometries/OctahedronGeometry"
9+ import { TorusGeometry } from "@/geometries/TorusGeometry"
10+ import { LineBasicMaterial } from "@/materials/LineBasicMaterial"
11+ import { MeshBasicMaterial } from "@/materials/MeshBasicMaterial"
12+ import { Euler } from "@/math/Euler"
13+ import { Matrix4 } from "@/math/Matrix4"
14+ import { Quaternion } from "@/math/Quaternion"
15+ import { Vector3 } from "@/math/Vector3"
16+ import { Mesh } from "@/objects/Mesh"
2317
2418const _raycaster = new Raycaster ( )
2519
You can’t perform that action at this time.
0 commit comments