以球体半径工作

以球体半径工作

使用 Aspose.3D for Node.js via Java,你可以设置得到一个球体的半径。为了获取或设置半径,您可以使用 Sphere 类的 getRadius()setRadius() 方法。以下是设置球体半径的代码示例。

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");