Published
Edited
Nov 28, 2020
3 stars
Also listed in…
Math
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
// Make a Plane mesh with specified Material
rect = function(v1, v2, v3, v4, material) {
const planeGeometry = new THREE.Geometry();
// add vertices
[v1, v2, v3, v4].forEach(v => planeGeometry.vertices.push(v));
// add faces
planeGeometry.faces.push(new THREE.Face3(0, 1, 2));
planeGeometry.faces.push(new THREE.Face3(2, 3, 0));
planeGeometry.computeFaceNormals();
// mesh
const plane = new THREE.Mesh( planeGeometry, material );
// random rotation!
plane.rotation.set(disorder*Math.random(), disorder*Math.random(), disorder*Math.random())
return plane;
}
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more