ZPR (.zpr)
- Export 支持 ZPR 格式的版本1.
背景
-
- ZPrint CAD 格式.
- 与 Z Corporation 三维打印机一起使用.
- ZEdit 与 ZPrint 应用程序的原格式.
- 由 Z Corporation 开发.
- 存储物理的三维模型和颜色信息.
- 二进制格式.
Export
- Export["file.zpr",expr] 把一个三维对象导出到 ZPR 文件.
- Export["file.zpr",Graphics3D[…]] 创建一个表示固体物理模型的 ZPR 文件.
- ZPR 文件中描述的对象的实际物理尺寸一般在打印时决定.
- Export["file.zpr",expr,elem] 通过把 expr 作为指定参数 elem 创建一个 ZPR 文件.
- Export["file.zpr",{expr1,expr2,…},{{elem1,elem2,…}}] 把每一个 expri 指定为相应的 elemi.
- Export["file.zpr",expr,opt1->val1,…] 导出具有指定值的指定选项参数的 expr.
- Export["file.zpr",{elem1->expr1,elem2->expr2,…},"Rules"] 使用规则指定要导出的参数.
- 请到以下参考页面了解完整的基本信息:
-
Export 导出到文件 CloudExport 导出到云端对象 ExportString 导出到字符串 ExportByteArray 导出到字节数组
Import Elements
- 表示数据的参数:
-
"Graphics3D" 把一个 Graphics3D 对象导出到 ZPR "GraphicsComplex" 导出一个 GraphicsComplex 对象 "PolygonData" 索引形式的多边形参数 "PolygonObjects" 以绝对坐标表示的 Polygon 图元列表 "VertexColors" 与每个顶点相关的颜色,以颜色图元列表表示 "VertexData" 顶点坐标列表 - 默认情况下,Export 使用 Graphics3D 参数.