浏览我们的产品
Aspose.3D for Java 19.5发行说明
此页面包含以下内容的发行说明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使用的当月消费信用。计量计费服务。