Skip to content
Back to Libraries

Three.js

103k

3D library for creating WebGL content

🔥 Trending3D Graphics
License
MIT
Released
2010
Stars
103k

Use Cases

3D games, product visualizers, architectural visualization, VR/AR experiences

Code Example

import * as THREE from 'three';
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(75, w/h, 0.1, 1000);
const renderer = new THREE.WebGLRenderer();

Related Libraries