Add text to a geometric figure THREE JS

I have this function where I created a sphere, but I would like to place that sphere on a text, but one that is specific to the sphere

function init(){
  //Creation de contructor
  Render.setSize(800,600);
  //Add render in Div
  var re = document.getElementById('render');
  re.appendChild(Render.domElement);
  //Creation de la camera
  camera.position.z = 100;
  scene.add(camera);
  //Creation of form with vertices and vectors
  load_model();
  //Load mouse controls
  control = new THREE.OrbitControls(camera, Render.domElement)
}

function load_model(){
  //Creation of the form
  geometry = new THREE.SphereGeometry(10,32,32);

  material = new THREE.MeshBasicMaterial({color:0xFF0000});
  form = new  THREE.Mesh(geometry,material);
  scene.add(form);
}

you know if it is possible to do it and what is the function?

Really hard to know what you mean here. Perhaps you could draw a picture to explain this?

1 Like

How i can edit my post?

Cordialement Emmanuel

Post%20edit
Press this button at the bottom of your post.