TH
ThreejsHindiLearning
TH
ThreejsHindiLearning

© 2026 threejshindi.com

Three.js/20 April 2026

3D Objects Kaise Banate Hain

Three.js me basic shapes kaise create karte hain

Advanced
6 min read

3D Objects Kaise Banate Hain

Three.js me 3D objects banane ke liye 2 cheeze chahiye:

  • Geometry (shape)
  • Material (color/style)

Example:

const geometry = new THREE.BoxGeometry()
const material = new THREE.MeshBasicMaterial({ color: "red" })
const cube = new THREE.Mesh(geometry, material)

End of Module - ThreejsHindi