Working with Radius of Sphere

Working with Radius of Sphere

Using Aspose.3D for Node.js via Java, you can set of get radius of a sphere. In order to get or set radius, you can use getRadius() and setRadius() methods of Sphere class. The following is the code sample to set radius of a sphere.  

var aspose = aspose || {};

aspose.threed = require("aspose.threed");

 // initialize a scene
var scene = new aspose.threed.Scene();

// initialize a Sphere
var sphere=new aspose.threed.Sphere();

 // set radius
sphere.setRadius(10);

// add sphere to the scene
scene.getRootNode().createChildNode(sphere);

// save scene
scene.save("sphere.obj");