浏览我们的产品

Aspose.3D for Java 19.5发行说明

改进和变更

钥匙摘要类别
THREEDNET-501与最新的Dynabic集成。计量增强
THREEDNET-505允许通过指定一个向上的法线来改变平面的方向增强
THREEDNET-489阴影在Vulkan渲染器中不起作用Bug
THREEDNET-504从STL文件创建的Draco已损坏Bug

公共API和向后不兼容的更改

请参阅对公共API所做的任何更改的列表,如添加、重命名、删除或不推荐使用的成员,以及对Aspose.3D for Java所做的任何非向后兼容的更改。如果您对列出的任何更改有疑问,请在Aspose.3D支持论坛

**在类com.aspose.threed.Plane中添加了新属性 * Radius ***

 /**

 * Gets the up vector of the plane, default value is (0, 1, 0), this affects the generation of the plane

 */

public Vector3 getUp();

/**

 * Sets the up vector of the plane, default value is (0, 1, 0), this affects the generation of the plane

 * @param value New value

 */

public void setUp(Vector3 value);

通过属性而不是构造函数参数指定半径的示例代码:

 Scene scene = new Scene();

Plane plane = new Plane();

plane.setUp(new Vector3(1, 1, 3));

scene.getRootNode().createChildNode(plane);

//This will generate a plane that has customized orientation

scene.save("test.obj", FileFormat.WAVEFRONTOBJ);

在类com.aspose.threed.Meted中添加了新方法 “getConsumptionCredit”

 /**

\* Gets consumption credit

\* @return consumption quantity

*/

public static double getConsumptionCredit() throws Exception;

获取Dynabic使用的当月消费信用。计量计费服务。


 
 简体中文