Quick Start
Let's setup a quick scene to show you the basics
Initializing a canvas
To create a Threejs scene in our document, we need to initialize a Canvas, for this it is possible to use x-3.canvas
which will create a basic scene, a camera, and a renderer with each of the default parameters that can be adjusted.
Populating our scene
There are many ways to fill your scene, but we'll keep it simple for now.
Let's start with a cube.
We declare a mesh with x-3.mesh
, then we can attach a geometry and a material with the corresponding directives.
Last updated