-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathbox.html
More file actions
52 lines (45 loc) · 1.06 KB
/
box.html
File metadata and controls
52 lines (45 loc) · 1.06 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>牛刀小试p</title>
<style>
body {
margin: 0;
}
</style>
</head>
<body>
<script src="https://unpkg.com/three/build/three.js"></script>
<script>
// 场景
const scene = new THREE.Scene()
// 相机
const camera = new THREE.PerspectiveCamera(
75,
window.innerWidth / window.innerHeight,
0.1,
1000
)
// 渲染器
const renderer = new THREE.WebGLRenderer()
renderer.setSize(window.innerWidth, window.innerHeight)
document.body.appendChild(renderer.domElement)
// 几何体
const geometry = new THREE.BoxGeometry()
// 材质
const material = new THREE.MeshNormalMaterial()
// 网格
const cube = new THREE.Mesh(geometry, material)
scene.add(cube)
camera.position.z = 5
!(function animate() {
cube.rotation.x += 0.01
cube.rotation.y += 0.01
console.log(cube.matrix.elements);
renderer.render(scene, camera)
requestAnimationFrame(animate)
})()
</script>
</body>
</html>