ViewDesignEngine  3.1.0
高性能 CAD 计算几何引擎
iges_export.h 文件参考

IGES 文件导出(版本 5.3) 更多...

#include "vde/brep/brep.h"
#include <string>
#include <vector>
iges_export.h 的引用(Include)关系图:

浏览源代码.

命名空间

 vde
 
 vde::brep
 

函数

std::string vde::brep::export_iges (const std::vector< BrepModel > &bodies)
 将 B-Rep 体导出为 IGES 格式字符串(版本 5.3) 更多...
 
void vde::brep::export_iges_file (const std::string &filepath, const std::vector< BrepModel > &bodies)
 将 B-Rep 体导出为 IGES 文件 更多...
 

详细描述

IGES 文件导出(版本 5.3)

将 B-Rep 模型序列化为 IGES 格式。IGES 5.3 是广泛兼容的版本, 支持 B-Rep 拓扑结构和常见解析曲面类型。

输出格式

产生的 IGES 文件遵循 ANSI Y14.26M 标准,使用固定宽度 80 字符记录格式。 兼容于大多数 CAD 系统的 IGES 导入器。

输出的实体类型

类型号 实体名 说明
116 Point 三维点
110 Line 直线段
100 Circular Arc 圆弧
126 Rational B-Spline Curve 有理 B 样条曲线
108 Plane 平面
128 Rational B-Spline Surface 有理 B 样条曲面
502 Vertex B-Rep 顶点
504 Edge B-Rep 边
508 Loop B-Rep 环
510 Face B-Rep 面
514 Shell B-Rep 壳
186 Manifold Solid B-Rep Object B-Rep 实体

在文件 iges_export.h 中定义.