Learning how to build shapes
parent
7d7cd25d52
commit
cb0f0fb2bd
|
@ -2,7 +2,7 @@
|
||||||
<html>
|
<html>
|
||||||
<head lang="en">
|
<head lang="en">
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>My first three.js app</title>
|
<title>Wack ass 3d</title>
|
||||||
<style>
|
<style>
|
||||||
body { margin: 0; }
|
body { margin: 0; }
|
||||||
</style>
|
</style>
|
||||||
|
|
72
main.js
72
main.js
|
@ -1,5 +1,42 @@
|
||||||
import * as THREE from 'three';
|
import * as THREE from 'three';
|
||||||
|
|
||||||
|
const NODE_SIZE = 0.2;
|
||||||
|
const LINK_SIZE = 0.1;
|
||||||
|
|
||||||
|
function makeShape(graph) {
|
||||||
|
const nodeids = {}
|
||||||
|
const group = new THREE.Group();
|
||||||
|
for ( const n of graph.nodes ) {
|
||||||
|
nodeids[n.id] = [ n.x, n.y, n.z ];
|
||||||
|
const geometry = new THREE.SphereGeometry(NODE_SIZE, NODE_SIZE,NODE_SIZE);
|
||||||
|
const material = new THREE.MeshBasicMaterial({color: 0x00ff00});
|
||||||
|
const sphere = new THREE.Mesh(geometry, material);
|
||||||
|
group.add(sphere);
|
||||||
|
sphere.x = n.x;
|
||||||
|
sphere.y = n.y;
|
||||||
|
sphere.z = n.z;
|
||||||
|
}
|
||||||
|
return group;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// const shape = makeShape({
|
||||||
|
// nodes: [
|
||||||
|
// { id: 1, x: -10, y: -10, z: -10 },
|
||||||
|
// { id: 2, x: 10, y: 10, z: 10}
|
||||||
|
// ],
|
||||||
|
// links: [
|
||||||
|
// { id: 1, source: 1, target: 1 }
|
||||||
|
// ]
|
||||||
|
// });
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const scene = new THREE.Scene();
|
const scene = new THREE.Scene();
|
||||||
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
|
const camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 );
|
||||||
|
|
||||||
|
@ -7,20 +44,41 @@ const renderer = new THREE.WebGLRenderer();
|
||||||
renderer.setSize( window.innerWidth, window.innerHeight );
|
renderer.setSize( window.innerWidth, window.innerHeight );
|
||||||
document.body.appendChild( renderer.domElement );
|
document.body.appendChild( renderer.domElement );
|
||||||
|
|
||||||
const geometry = new THREE.BoxGeometry( 1, 1, 1 );
|
// const geometry = new THREE.BoxGeometry( 1, 1, 1 );
|
||||||
const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
|
// const material = new THREE.MeshBasicMaterial( { color: 0x00ff00 } );
|
||||||
const cube = new THREE.Mesh( geometry, material );
|
// const cube = new THREE.Mesh( geometry, material );
|
||||||
scene.add( cube );
|
// scene.add( cube );
|
||||||
|
|
||||||
|
const group = new THREE.Group();
|
||||||
|
|
||||||
|
const sphere_g = new THREE.SphereGeometry( 1 );
|
||||||
|
const sphere_m = new THREE.MeshBasicMaterial( { color: 0x33ff00 } );
|
||||||
|
const sphere = new THREE.Mesh( sphere_g, sphere_m );
|
||||||
|
group.add( sphere );
|
||||||
|
|
||||||
|
const cyl_g = new THREE.CylinderGeometry( 0.2, 0.2, 4 );
|
||||||
|
const cyl_m = new THREE.MeshBasicMaterial( { color: 0x009930 } );
|
||||||
|
const cyl = new THREE.Mesh( cyl_g, cyl_m );
|
||||||
|
group.add( cyl );
|
||||||
|
|
||||||
|
|
||||||
|
scene.add(group);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
camera.position.z = 5;
|
camera.position.z = 5;
|
||||||
|
|
||||||
|
let tick = 0;
|
||||||
|
|
||||||
function animate() {
|
function animate() {
|
||||||
requestAnimationFrame( animate );
|
requestAnimationFrame( animate );
|
||||||
|
|
||||||
cube.rotation.x += 0.01;
|
group.rotation.x = tick;
|
||||||
cube.rotation.y += 0.01;
|
group.rotation.y = tick;
|
||||||
|
cyl.position.y = Math.sin(tick * 10) * 0.4;
|
||||||
|
cyl.rotation.x = tick * 2;
|
||||||
|
|
||||||
|
tick += 0.01;
|
||||||
renderer.render( scene, camera );
|
renderer.render( scene, camera );
|
||||||
}
|
}
|
||||||
animate();
|
animate();
|
Loading…
Reference in New Issue