提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|产品更新|编辑:李显亮|2019-07-09 14:06:50.080|阅读 276 次
概述:Aspose.3D for .NET更新至v19.7,在Google Draco中添加点云导出支持!
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
Aspose.3D for .NET是一个功能丰富的游戏软件和计算机辅助设计(CAD)API,用于处理3D文档格式,无需任何3D建模和渲染软件依赖。支持Discreet3DS、WavefrontOBJ、FBX(ASCII,二进制)、STL(ASCII,二进制)、Universal3D、Collada、glTF、GLB、PLY、DirectX、Google Draco文件格式等。
Aspose.3D for .NET更新至v19.7,在Google Draco中添加点云导出支持!>>欢迎下载Aspose.3D for .NET最新试用版
key | 概述 | 类别 |
---|---|---|
THREEDNET-449 | 节点中的转换值存在问题 | 功能 |
THREEDNET-526 | 在Google Draco中添加点云导出支持 | 增强 |
THREEDNET-524 | 在Google Draco中添加点云导入支持 | 增强 |
THREEDNET-523 | 以PLY格式添加点云支持 | 增强 |
▲向类Aspose.ThreeD.Formats.DracoFormat添加了新的解码方法
////// Decode the point cloud or mesh from specified file name //////The file name contains the drc file///Aorinstance depends on the file contentpublic Geometry Decode(string fileName); ////// Decode the point cloud or mesh from memory data //////The raw drc bytes///Aorinstance depends on the contentpublic Geometry Decode(byte[] data)
用于直接从draco文件解码网格而不构建场景的示例代码:
var pointCloud = (PointCloud) FileFormat.Draco.Decode("pointCloud.drc");
▲向类Aspose.ThreeD.Formats.DracoFormat添加了新的编码方法
////// Encode the entity to specified stream //////The entity to be encoded///The stream that encoded data will be written to///Extra options for encoding the point cloudpublic void Encode(Entity entity, Stream stream, DracoSaveOptions options = null); ////// Encode the entity to specified file //////The entity to be encoded///The file name to be written///Extra options for encoding the point cloudpublic void Encode(Entity entity, string fileName, DracoSaveOptions options = null); ////// Encode the entity to Draco raw data //////The entity to be encoded///Extra options for encoding the point cloud///The encoded draco data represented in bytespublic byte[] Encode(Entity entity, DracoSaveOptions options = null);
用于直接将球体网格编码为draco文件而不构建场景的示例代码:
FileFormat.Draco.Encode(new Sphere(), "sphere.drc");
▲将新方法PointCloud添加到Aspose.ThreeD.Formats.DracoSaveOptions类
////// Export the scene as point cloud, default value is false. ///public bool PointCloud { get; set; }
用于将球体网格编码为draco文件作为点云的示例代码:
FileFormat.Draco.Encode(new Sphere(), "sphere.drc", new DracoSaveOptions() {PointCloud = true});
▲添加了新方法对Aspose.ThreeD.Formats.PlyFormat类进行编码
////// Encode the entity and save the result into the stream. //////The entity to encode///The stream to write to, this method will not close this stream///Save optionspublic void Encode(Entity entity, Stream stream, PlySaveOptions opt = null); ////// Encode the entity and save the result into an external file. //////The entity to encode///The file to write to///Save optionspublic void Encode(Entity entity, string fileName, PlySaveOptions opt = null);
用于直接将网格编码为ply文件而不构建场景的示例代码:
FileFormat.PLY.Encode(new Sphere(), "sphere.ply");
▲为Aspose.ThreeD.Formats.PlyFormat类添加了新方法解码
////// Decode a point cloud or mesh from the specified stream. //////The input stream///The load option of PLY format///Aorinstancepublic Geometry Decode(string fileName, PlyLoadOptions opt = null); ////// Decode a point cloud or mesh from the specified stream. //////The input stream///The load option of PLY format///Aorinstancepublic Geometry Decode(Stream stream, PlyLoadOptions opt = null);
用于解码ply文件中的网格/点云的示例代码:
var geom = FileFormat.PLY.Decode("sphere.ply");
▲将属性PointCloud添加到Aspose.ThreeD.Formats.PlySaveOptions类
////// Export the scene as point cloud, the default value is false. ///public bool PointCloud { get; set; }
用于强制导出场景以作为点云的示例代码:
FileFormat.PLY.Encode(new Sphere(), "sphere.ply", new PlySaveOptions(){PointCloud = true});
欢迎加入ASPOSE技术交流QQ群(642018183),各类资源及时分享,欢迎交流讨论!
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn
知名C/C++开发工具CLion全新发布v2024.3,新版本新语言引擎有显著改进等,欢迎下载新版体验!
强大的VS插件CodeRush已正式发布v24.2.3,新版本现在可以运行xUnit.Net v3测试等,欢迎下载最新版体验!
Spire.PDF 10.12.4 最新版本支持在进行多页打印时设置自动旋转方向。同时,一些已知问题也在本次更新中被成功修复,例如打印 PDF 文档时内容丢失的问题,欢迎下载体验~
日程安排控件dhtmlxScheduler v7.2全新发布,新版本增强并增加了编辑、修改等多个操作体验,欢迎下载最新版试用~
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@pclwef.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢