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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
| <!DOCTYPE html> <html> <head> <title>three.js学习之常见的几何图形</title> <meta name="keywords" content="three.js demo, three.js常见的几何图形,three.js分割线"> <meta name="description" content="three.js盒子学习demo,通过调整群组group和WireframeGeometry参数来显示完整的实体及分割线"> <meta charset="utf8" /> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no"> <script src="https://cdn.bootcdn.net/ajax/libs/three.js/r99/three.min.js"></script> <style> html,body{ height: 100%; margin: 0; } #three{ display: block; width: 100%; height: 100%; } </style> </head> <body> <canvas id="three"></canvas> <script> function main () { const search = location.search const canvas = document.querySelector('#three') const renderer = new THREE.WebGLRenderer({canvas}) const fov = 75; const aspect = 2; const near = 0.1; const far = 200;
const camera = new THREE.PerspectiveCamera(fov, aspect, near, far)
const group = new THREE.Group() group.position.z = -10 { // 添加圆形 const circleMaterial = new THREE.MeshPhongMaterial({ color: 0x00F5FF }) const circle1Geometry = new THREE.CircleGeometry(2) const circle1 = new THREE.Mesh(circle1Geometry, circleMaterial) const lineMaterial1 = new THREE.LineBasicMaterial( { color: 0xffffff} ); const lineGeometry1 = new THREE.WireframeGeometry( circle1Geometry ); const line = new THREE.Line(lineGeometry1, lineMaterial1) if (search.includes('circle1') || !search) { group.add(circle1, line) }
const circleMaterial2 = new THREE.MeshPhongMaterial({ color: 0x00F5FF }) const circle2Geometry = new THREE.CircleGeometry(2, 3) const circle2 = new THREE.Mesh(circle2Geometry, circleMaterial2) circle2.position.x = -4 const lineMaterial2 = new THREE.LineBasicMaterial( { color: 0xffffff} ); const lineGeometry2 = new THREE.WireframeGeometry( circle2Geometry ); const line2 = new THREE.Line(lineGeometry2, lineMaterial2) line2.position.x = -4 if (search.includes('circle2') || !search) { group.add(circle2, line2) }
const circleMaterial3 = new THREE.MeshPhongMaterial({ color: 0x00F5FF }) const circle3Geometry = new THREE.CircleGeometry(2, 10, 0, 1.5*Math.PI) const circle3 = new THREE.Mesh(circle3Geometry, circleMaterial3) circle3.position.x = 4 const lineMaterial3 = new THREE.LineBasicMaterial( { color: 0xffffff} ); const lineGeometry3 = new THREE.WireframeGeometry( circle3Geometry ); const line3 = new THREE.Line(lineGeometry3, lineMaterial3) line3.position.x = 4 if (search.includes('circle3') || !search) { group.add(circle3, line3) } }
{ const coneMaterial1 = new THREE.MeshBasicMaterial({color: 0x0000FF}) const coneGeometry1 = new THREE.ConeGeometry() const cone1 = new THREE.Mesh(coneGeometry1, coneMaterial1) cone1.position.y = 4 cone1.rotation.z = 3
const coneLine1Materail = new THREE.LineBasicMaterial({color: 0xffffff}) const coneLine1Geometry = new THREE.WireframeGeometry(coneGeometry1) const coneLine1 = new THREE.Line(coneLine1Geometry, coneLine1Materail) coneLine1.position.y = 4 coneLine1.rotation.z = 3 if (search.includes('cone1') || !search) { group.add(cone1, coneLine1) }
const coneMaterial2 = new THREE.MeshBasicMaterial({color: 0x0000FF}) const coneGeometry2 = new THREE.ConeGeometry(1, 3) const cone2 = new THREE.Mesh(coneGeometry2, coneMaterial2) cone2.position.y = 4 cone2.position.x = -2 cone2.rotation.z = 5
const coneLine2Materail = new THREE.LineBasicMaterial({color: 0xffffff}) const coneLine2Geometry = new THREE.WireframeGeometry(coneGeometry2) const coneLine2 = new THREE.Line(coneLine2Geometry, coneLine2Materail) coneLine2.position.y = 4 coneLine2.position.x = -2 coneLine2.rotation.z = 5 if (search.includes('cone2') || !search) { group.add(cone2, coneLine2) }
const coneMaterial3 = new THREE.MeshBasicMaterial({color: 0xFF1493}) const coneGeometry3 = new THREE.ConeGeometry(1, 3, 5) const cone3 = new THREE.Mesh(coneGeometry3, coneMaterial3) cone3.position.y = 4 cone3.position.x = 2 cone3.rotation.z = 5
const coneLine3Materail = new THREE.LineBasicMaterial({color: 0xffffff}) const coneLine3Geometry = new THREE.WireframeGeometry(coneGeometry3) const coneLine3 = new THREE.Line(coneLine3Geometry, coneLine3Materail) coneLine3.position.y = 4 coneLine3.position.x = 2 coneLine3.rotation.z = 5 if (search.includes('cone3') || !search) { group.add(cone3, coneLine3) }
const coneMaterial4 = new THREE.MeshBasicMaterial({color: 0xFF1493, side: THREE.DoubleSide}) const coneGeometry4 = new THREE.ConeGeometry(3, 6, 8, 8, true, 0, 2 * Math.PI) const cone4 = new THREE.Mesh(coneGeometry4, coneMaterial4) cone4.position.y = 4 cone4.position.x = -6 cone4.rotation.z = 5
const coneLine4Materail = new THREE.LineBasicMaterial({color: 0xffffff}) const coneLine4Geometry = new THREE.WireframeGeometry(coneGeometry4) const coneLine4 = new THREE.Line(coneLine4Geometry, coneLine4Materail) coneLine4.position.y = 4 coneLine4.position.x = -6 coneLine4.rotation.z = 5 if (search.includes('cone4') || !search) { group.add(cone4, coneLine4) }
const coneMaterial5 = new THREE.MeshBasicMaterial({color: 0x9370DB, side: THREE.DoubleSide}) const coneGeometry5 = new THREE.ConeGeometry(2, 4, 8, 8, true, 0, 1 * Math.PI) const cone5 = new THREE.Mesh(coneGeometry5, coneMaterial5) cone5.position.y = 4 cone5.position.x = 6 cone5.rotation.z = 3
const coneLine5Materail = new THREE.LineBasicMaterial({color: 0xffffff}) const coneLine5Geometry = new THREE.WireframeGeometry(coneGeometry5) const coneLine5 = new THREE.Line(coneLine5Geometry, coneLine5Materail) coneLine5.position.y = 4 coneLine5.position.x = 6 coneLine5.rotation.z = 3 if (search.includes('cone5') || !search) { group.add(cone5, coneLine5) }
}
const scene = new THREE.Scene() { const lightColor = 0xffffff; // 灯光颜色 const intensity = 1; // 灯光强度 const light = new THREE.DirectionalLight(lightColor, intensity); light.position.set(-1, 2, 4); scene.add(light); } scene.add(group)
function resizeRenderSizeToDisplaySize () { const pixelRatio = window.devicePixelRatio; const displayWidth = canvas.clientWidth * pixelRatio const displayHeight = canvas.clientHeight * pixelRatio const renderWidth = canvas.width; const renderHeight = canvas.height; const needResize = displayWidth !== renderWidth || displayHeight !== renderHeight return needResize } function render (time) { if (resizeRenderSizeToDisplaySize()) { const pixelRatio = window.devicePixelRatio; const width = canvas.clientWidth * pixelRatio const height = canvas.clientHeight * pixelRatio renderer.setSize(width, height, false) camera.aspect = canvas.clientWidth / canvas.clientHeight; camera.updateProjectionMatrix(); }
time *= 0.001 group['children'].forEach((each, index) => { if (each.position.y === 0) { each.rotation.z = -time } else { each.rotation.y = -time } // if (index % 2 === 0) { // each.rotation.z = -time // } else { // each.rotation.z = time // } })
// group.position.y = time // group.position.x = time renderer.render(scene, camera) requestAnimationFrame(render) } requestAnimationFrame(render) // render() } main() </script> </body> </html>
|