|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | +<head> |
| 4 | + <title>3D Lissajous curve Using Three.js</title> |
| 5 | + <link rel="stylesheet" type="text/css" href="style.css"> |
| 6 | +</head> |
| 7 | +<body> |
| 8 | + |
| 9 | +<script type="importmap"> |
| 10 | +{ |
| 11 | + "imports": { |
| 12 | + "three": "https://cx20.github.io/gltf-test/libs/three.js/r174/build/three.module.js", |
| 13 | + "three/examples/jsm/": "https://cx20.github.io/gltf-test/libs/three.js/r174/examples/jsm/" |
| 14 | + } |
| 15 | +} |
| 16 | +</script> |
| 17 | + |
| 18 | +<script id="vs" type="x-shader/x-vertex"> |
| 19 | +attribute vec3 position; |
| 20 | +attribute vec4 color; |
| 21 | +varying vec4 vColor; |
| 22 | +uniform mat4 modelViewMatrix; |
| 23 | +uniform mat4 projectionMatrix; |
| 24 | + |
| 25 | +void main() { |
| 26 | + vColor = color; |
| 27 | + gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0); |
| 28 | +} |
| 29 | +</script> |
| 30 | + |
| 31 | +<script id="fs" type="x-shader/x-fragment"> |
| 32 | +precision mediump float; |
| 33 | +varying vec4 vColor; |
| 34 | + |
| 35 | +void main() { |
| 36 | + gl_FragColor = vColor; |
| 37 | +} |
| 38 | +</script> |
| 39 | + |
| 40 | +<div id="container"></div> |
| 41 | + |
| 42 | +<script type="module"> |
| 43 | +import * as THREE from 'three'; |
| 44 | + |
| 45 | +let container; |
| 46 | +let camera, scene, renderer; |
| 47 | +let mesh; |
| 48 | + |
| 49 | +init(); |
| 50 | +animate(); |
| 51 | + |
| 52 | +function init() { |
| 53 | + container = document.getElementById('container'); |
| 54 | + |
| 55 | + scene = new THREE.Scene(); |
| 56 | + scene.background = new THREE.Color(0x000000); |
| 57 | + |
| 58 | + camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 100); |
| 59 | + camera.position.z = 3; |
| 60 | + |
| 61 | + const MAX = 360; |
| 62 | + const A = 100.0; |
| 63 | + const B = 99.0; |
| 64 | + const C = 1.0; |
| 65 | + const alpha = Math.PI/4; |
| 66 | + const beta = Math.PI/3; |
| 67 | + const gamma = 0; // Math.PI/2; |
| 68 | + |
| 69 | + let positions = []; |
| 70 | + let colors = []; |
| 71 | + let indices = []; |
| 72 | + |
| 73 | + let index = 0; |
| 74 | + for (let i = 0; i <= MAX; i += 0.1) { |
| 75 | + let x = 0.5 * Math.sin(2 * Math.PI * i / MAX * A + alpha); |
| 76 | + let y = 0.5 * Math.sin(2 * Math.PI * i / MAX * B + beta); |
| 77 | + let z = 0.5 * Math.sin(2 * Math.PI * i / MAX * C + gamma); |
| 78 | + |
| 79 | + let r = x + 0.5; |
| 80 | + let g = y + 0.5; |
| 81 | + let b = z + 0.5; |
| 82 | + |
| 83 | + positions.push(x, y, z); |
| 84 | + colors.push(r, g, b, 1.0); |
| 85 | + indices.push(index); |
| 86 | + index++; |
| 87 | + } |
| 88 | + |
| 89 | + let geometry = new THREE.BufferGeometry(); |
| 90 | + geometry.setAttribute('position', new THREE.Float32BufferAttribute(positions, 3)); |
| 91 | + geometry.setAttribute('color', new THREE.Float32BufferAttribute(colors, 4)); |
| 92 | + geometry.setIndex(indices); |
| 93 | + |
| 94 | + let material = new THREE.RawShaderMaterial({ |
| 95 | + vertexShader: document.getElementById('vs').textContent, |
| 96 | + fragmentShader: document.getElementById('fs').textContent, |
| 97 | + vertexColors: true |
| 98 | + }); |
| 99 | + |
| 100 | + mesh = new THREE.Line(geometry, material); |
| 101 | + scene.add(mesh); |
| 102 | + |
| 103 | + renderer = new THREE.WebGLRenderer({ antialias: true }); |
| 104 | + renderer.setSize(window.innerWidth, window.innerHeight); |
| 105 | + container.appendChild(renderer.domElement); |
| 106 | + |
| 107 | + window.addEventListener('resize', onWindowResize); |
| 108 | +} |
| 109 | + |
| 110 | +function onWindowResize() { |
| 111 | + camera.aspect = window.innerWidth / window.innerHeight; |
| 112 | + camera.updateProjectionMatrix(); |
| 113 | + renderer.setSize(window.innerWidth, window.innerHeight); |
| 114 | +} |
| 115 | + |
| 116 | +function animate() { |
| 117 | + requestAnimationFrame(animate); |
| 118 | + |
| 119 | + mesh.rotation.y -= Math.PI * 1.0 / 180.0; |
| 120 | + |
| 121 | + renderer.render(scene, camera); |
| 122 | +} |
| 123 | +</script> |
| 124 | + |
| 125 | +<a href="https://github.com/cx20/hello/blob/master/html5/threejs/3-2.3d_lissajous.html" target="_blank">View Source</a> |
| 126 | + |
| 127 | +</body> |
| 128 | +</html> |
0 commit comments