浏览我们的产品

Aspose.3D for .NET 19.5发行说明

改进和变更

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

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

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

在类Aspose.ThreeD.Entities.Plane中添加了新的属性半径

 /// <summary>

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

/// </summary>

public Vector3 Up { get; set; }

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

 Scene scene = new Scene();

scene.RootNode.CreateChildNode(new Plane() {Up = new Vector3(1, 1, 3)});

//This will generate a plane that has customized orientation

scene.Save("test.obj", FileFormat.WavefrontOBJ);

在类Aspose.ThreeD中添加了新方法 “GetConsumptionCredit”。计量

 /// <summary>

/// Gets consumption credit

/// </summary>

/// <returns>consumption quantity</returns>

public static decimal GetConsumptionCredit();

 获取当月消费信用,由Dynabic.Metrate计费服务使用。


 
 简体中文