|
ViewDesignEngine
3.1.0
高性能 CAD 计算几何引擎
|
IGES 文件导入(ANSI Y14.26M) 更多...

命名空间 | |
| vde | |
| vde::brep | |
枚举 | |
| enum class | vde::brep::IgesError { vde::brep::Ok = 0 , vde::brep::FileNotFound , vde::brep::ParseError , vde::brep::InvalidSection , vde::brep::UnsupportedEntity , vde::brep::MissingEntity , vde::brep::EntityTypeError } |
| IGES 导入错误码 更多... | |
函数 | |
| std::vector< BrepModel > | vde::brep::import_iges (const std::string &filepath) |
| 从文件导入 IGES 更多... | |
| std::vector< BrepModel > | vde::brep::import_iges_from_string (const std::string &data) |
| 从字符串导入 IGES(用于测试) 更多... | |
| IgesError | vde::brep::iges_last_error () |
| 获取最近一次 IGES 导入的错误码 更多... | |
| const std::string & | vde::brep::iges_last_error_message () |
| 获取最近一次 IGES 导入的可读错误描述 更多... | |
IGES 文件导入(ANSI Y14.26M)
解析 IGES 格式文件(.igs / .iges)并转换为 B-Rep 模型。
IGES (Initial Graphics Exchange Specification) 是一种旧式但广泛使用的 CAD 数据交换格式。 采用 80 字符固定宽度记录格式,分为 5 个区域:
主要支持几何和拓扑实体:
在文件 iges_import.h 中定义.