Skip to content

Commit 6bf8678

Browse files
committed
TransformControls
1 parent 8fa7216 commit 6bf8678

File tree

1 file changed

+16
-22
lines changed

1 file changed

+16
-22
lines changed

src/jsm/controls/TransformControls.js

Lines changed: 16 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,19 @@
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

2418
const _raycaster = new Raycaster()
2519

0 commit comments

Comments
 (0)