Top "Three.js" questions

Three.

THREE.JS Exporting JSON models from blender (including textures)

I'm using the mrdoob Blender Export Plugin (io_mesh_threejs) to Export to Three JS, but the exported .js or .…

javascript json export three.js blender
Is there at TWO JS counterpart to THREE JS

I am moving along well learning ThreeJS as an interface to WebGL. Thank you all for your previous help. I …

three.js
Three.js - OrbitControls doesn't work

If I run the script, the console displays me "THREE.OrbitControls is not a constructor". What did I wrong? I …

javascript three.js
Three.js multiple materials on object loaded via OBJMTLLoader

I have ".obj" and ".mtl" files of a model and I'm loading it via OBJMTLLoader. ".mtl" specifies texture to apply …

javascript three.js textures mesh
How make 3d text in three js

I write a script by referencing this doc and this doc my code is <script src="https://raw.github.…

javascript html webgl three.js
Three.js move geometry's center

I've created a cylinder and I want to move its center of rotation to one of its ends by changing …

three.js
three.js rotate camera in plane

I have a camera in my app: camera = new THREE.PerspectiveCamera( 75, window.innerWidth / window.innerHeight, 0.1, 1000 ); camera.position.z = 1; camera.position.…

javascript camera rotation three.js perspectivecamera
Limiting framerate in Three.js to increase performance, requestAnimationFrame?

I was thinking that for some projects I do 60fps is not totally needed. I figured I could have more …

javascript html canvas three.js requestanimationframe
Three.js - How can I calculate the distance between two 3D positions?

I've already tried searching several different things on Google. Doesn't seem like I'm able to find anything. Thought I might …

camera three.js distance mesh between
three.js: how to control rendering order

Am using three.js How can I control the rendering order? Let's say I have three plane geometries, and want …

optimization 3d rendering three.js