簡體   English   中英

適用於 DWF 的 Autodesk Forge DiffTool 擴展

[英]Autodesk Forge DiffTool extension for DWF

基於下面的文章鏈接,Forge Viewer (7.36) 使加載和查看 PDF 和本地 DWF 文件變得容易https://forge.autodesk.com/blog/dwf-and-pdf-support-forge-viewer

我正在使用相同的過程加載 3D DWF 文件,想知道 DiffTool Extension 是否可以顯示 DWF 文件模型的差異。 基於 DiffTool 支持的 mimeType,我嘗試了 'application/vnd.autodesk.dxf': For DXF 和 'application/vnd.autodesk.autocad.dwg': For DWG。 但它不起作用。 請建議 DWF 文件是否支持特殊的 mimeType。 謝謝 !

我們僅支持一系列文件格式,因為某些格式不會為對象提供永不更改的唯一 ID。 基本上,如果 object 在新版本中發生變化,我們需要在新版本中識別它。 如果我們沒有唯一的 ID,那么就很難識別相同的對象。

這是代碼中的列表,顯示可以比較哪種類型的模型。

'application/vnd.autodesk.fusion360': { 'supports2d': true },
    'application/vnd.autodesk.f3d': { 'supports2d': true },
    'application/vnd.autodesk.revit': { 'supports2d': true },
    'application/vnd.autodesk.r360': { 'supports2d': true },
    'application/vnd.autodesk.inventor.assembly': { 'supports2d': true },
    'application/vnd.autodesk.navisworks': { 'supports2d': true  },
    'application/vnd.autodesk.cad': { 'supports2d': false  },
    'application/vnd.autodesk.dxf': { 'supports2d': false  },
    'application/vnd.autodesk.autocad.dwg': { 'supports2d': false  }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM