彩票走势图

计算机辅助设计控件Aspose.3D for Java 最新版亮点:Aspose.3D的安全性审查增强

原创|产品更新|编辑:李显亮|2019-08-27 13:37:21.667|阅读 209 次

概述:在最新版的Aspose.3D for Java v19.8中,新增在Wavefront OBJ中添加点云支持,增强Aspose.3D的安全性审查,修复DRC到STL转换失败等多项问题,欢迎下载体验。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

Aspose.3D for Java是独立的Gameware和计算机辅助设计(CAD)API,用于处理3D文件。同时支持大多数流行的3D文件格式,应用程序可以轻松创建,读取,转换和修改3D文件。此外,API还可以帮助开发人员在游戏中建模和创建大量世界,为设计可视化创建出色的场景,参与虚拟现实体验,将动画属性添加到3D场景文件,使用3D变换格式化元素等等。

在最新版的Aspose.3D for Java v19.8中,新增在Wavefront OBJ中添加点云支持,增强Aspose.3D的安全性审查,修复DRC到STL转换失败等多项问题,下面我们用示例来演示该功能的使用和工作原理。>>欢迎下载Aspose.3D for Java v19.8体验

具体更新内容

key概述类别
THREEDNET-528在Wavefront OBJ中添加点云支持新功能
THREEDNET-531Aspose.3D的安全性审查增强
THREEDNET-536 DRC到STL转换失败Bug修复
THREEDNET-537将PLY转换为GLB时出现问题 Bug修复
THREEDNET-539大点云可能会生成不正确的数据 Bug修复

在com.aspose.threed.ObjSaveOptions类中添加了新的getter / setter PointCloud

/**
 * Gets the flag whether the exporter should export the scene as point cloud(without topological structure), default value is false
 */
public boolean getPointCloud();
/**
 * Sets the flag whether the exporter should export the scene as point cloud(without topological structure), default value is false
 * @param value New value
 */
public void setPointCloud(boolean value);

示例代码生成一个obj格式的球面点云。

Scene scene = new Scene(new Sphere());
ObjSaveOptions opt = new ObjSaveOptions();
opt.setPointCloud(true);
scene.save("sphere.obj", opt);

添加了新方法createPolygon com.aspose.threed.Mesh

/**
 * Create a polygon with 4 vertices(quad)
 * @param v1 Index of the first vertex
 * @param v2 Index of the second vertex
 * @param v3 Index of the third vertex
 * @param v4 Index of the fourth vertex
 */
public void createPolygon(int v1, int v2, int v3, int v4);
/**
 * Create a polygon with 3 vertices(triangle)
 * @param v1 Index of the first vertex
 * @param v2 Index of the second vertex
 * @param v3 Index of the third vertex
 */
public void createPolygon(int v1, int v2, int v3);

示例代码:

Mesh mesh = new Mesh();
mesh.createPolygon(new int[] { 0, 1, 2 }); //The old CreatePolygon needs to create a temporary array for holding the face indices
mesh.createPolygon(0, 1, 2); //The new overloads doesn't need extra allocation, and it's optimized internally.

在com.aspose.threed.GLTFSaveOptions类中添加了新的getter/setter PrettyPrint

/**
* The JSON content of GLTF file is indented for human reading, default value is false
*/
public boolean getPrettyPrint();
/**
* The JSON content of GLTF file is indented for human reading, default value is false
* @param value New value
*/
public void setPrettyPrint(boolean value);

旧的prettyPrint是一个公共领域,它已被财产取代以保持一致。示例代码:

Scene scene = new Scene(new Sphere());
GLTFSaveOptions opt = new GLTFSaveOptions(FileFormat.GLTF2);
//opt.prettyPrint = true; //Old code
opt.setPrettyPrint(true); //Use setter to change this configuration.
scene.save("sphere.gltf", opt);

*Aspose.3D现已加入“8月省钱式嗨购”,满额即送office 365正版授权,想要购买Aspose.3D正版授权的朋友可了解详情哦~


ASPOSE技术交流QQ群(642018183)已开通,各类资源及时分享,欢迎交流讨论!

扫描关注“慧聚IT”微信公众号,及时获取更多产品最新动态及最新资讯

1562572142.jpg




标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP