├── .gitmodules ├── BUGS ├── CMakeLists.txt ├── CMakeModules └── FindSISL.cmake ├── INSTALL ├── LICENSE ├── NOTES.cutouts ├── README.md ├── README.testing.md ├── TODO ├── patches └── 0001-sisl.patch ├── recipe ├── bld.bat └── meta.yaml ├── samples └── idftest │ ├── NOTES.idf │ ├── arduino-due.emn │ ├── arduino-due.emp │ ├── crescent.emn │ ├── crescent.emp │ ├── cylinder.emn │ ├── cylinder.emp │ ├── overlap.emn │ ├── overlap.emp │ ├── pic_programmer.emn │ ├── pic_programmer.emp │ ├── test_other_outline.emn │ ├── test_other_outline.emp │ ├── test_out0.emn │ ├── test_out0.emp │ ├── test_out1.emn │ ├── test_out1.emp │ ├── test_out2.emn │ ├── test_out2.emp │ ├── test_out3.emn │ ├── test_out3.emp │ ├── test_outline.emn │ ├── test_outline.emp │ ├── test_strange.emn │ ├── test_strange.emp │ ├── video.emn │ └── video.emp ├── sisl_exports.def ├── src ├── CMakeLists.txt ├── dllapi │ ├── README │ ├── dll_entity100.cpp │ ├── dll_entity102.cpp │ ├── dll_entity104.cpp │ ├── dll_entity110.cpp │ ├── dll_entity120.cpp │ ├── dll_entity122.cpp │ ├── dll_entity124.cpp │ ├── dll_entity126.cpp │ ├── dll_entity128.cpp │ ├── dll_entity142.cpp │ ├── dll_entity144.cpp │ ├── dll_entity308.cpp │ ├── dll_entity314.cpp │ ├── dll_entity406.cpp │ ├── dll_entity408.cpp │ ├── dll_iges.cpp │ ├── dll_iges_curve.cpp │ ├── dll_iges_entity.cpp │ ├── dll_iges_geom_pcb.cpp │ ├── dll_mcad_outline.cpp │ └── dll_mcad_segment.cpp ├── entities │ ├── CMakeLists.txt │ ├── entity100.cpp │ ├── entity102.cpp │ ├── entity104.cpp │ ├── entity108.cpp │ ├── entity110.cpp │ ├── entity120.cpp │ ├── entity122.cpp │ ├── entity124.cpp │ ├── entity126.cpp │ ├── entity128.cpp │ ├── entity142.cpp │ ├── entity144.cpp │ ├── entity154.cpp │ ├── entity164.cpp │ ├── entity180.cpp │ ├── entity186.cpp │ ├── entity308.cpp │ ├── entity314.cpp │ ├── entity406.cpp │ ├── entity408.cpp │ ├── entity502.cpp │ ├── entity504.cpp │ ├── entity508.cpp │ ├── entity510.cpp │ ├── entity514.cpp │ ├── entityNULL.cpp │ ├── entity_template.cpp │ ├── iges_curve.cpp │ └── iges_entity.cpp ├── geom │ ├── geom_cylinder.cpp │ ├── geom_wall.cpp │ ├── iges_geom_pcb.cpp │ ├── mcad_elements.cpp │ ├── mcad_helpers.cpp │ ├── mcad_outline.cpp │ └── mcad_segment.cpp ├── idf │ ├── CMakeLists.txt │ ├── gpl-2.0.txt │ ├── idf2igs.cpp │ ├── idf_common.cpp │ ├── idf_common.h │ ├── idf_helpers.cpp │ ├── idf_helpers.h │ ├── idf_outlines.cpp │ ├── idf_outlines.h │ ├── idf_parser.cpp │ └── idf_parser.h ├── iges │ ├── CMakeLists.txt │ ├── iges.cpp │ ├── iges_io.cpp │ └── mcad_utils.cpp ├── include │ ├── api │ │ ├── all_api_entities.h │ │ ├── dll_entity100.h │ │ ├── dll_entity102.h │ │ ├── dll_entity104.h │ │ ├── dll_entity110.h │ │ ├── dll_entity120.h │ │ ├── dll_entity122.h │ │ ├── dll_entity124.h │ │ ├── dll_entity126.h │ │ ├── dll_entity128.h │ │ ├── dll_entity142.h │ │ ├── dll_entity144.h │ │ ├── dll_entity308.h │ │ ├── dll_entity314.h │ │ ├── dll_entity406.h │ │ ├── dll_entity408.h │ │ ├── dll_iges.h │ │ ├── dll_iges_curve.h │ │ ├── dll_iges_entity.h │ │ ├── dll_iges_geom_pcb.h │ │ ├── dll_mcad_outline.h │ │ └── dll_mcad_segment.h │ ├── core │ │ ├── all_entities.h │ │ ├── entity100.h │ │ ├── entity102.h │ │ ├── entity104.h │ │ ├── entity108.h │ │ ├── entity110.h │ │ ├── entity120.h │ │ ├── entity122.h │ │ ├── entity124.h │ │ ├── entity126.h │ │ ├── entity128.h │ │ ├── entity142.h │ │ ├── entity144.h │ │ ├── entity154.h │ │ ├── entity164.h │ │ ├── entity180.h │ │ ├── entity184.h │ │ ├── entity186.h │ │ ├── entity308.h │ │ ├── entity314.h │ │ ├── entity406.h │ │ ├── entity408.h │ │ ├── entity430.h │ │ ├── entity502.h │ │ ├── entity504.h │ │ ├── entity508.h │ │ ├── entity510.h │ │ ├── entity514.h │ │ ├── entityNULL.h │ │ ├── entity_template.h │ │ ├── iges.h │ │ ├── iges_base.h │ │ ├── iges_curve.h │ │ ├── iges_entity.h │ │ └── iges_io.h │ ├── error_macros.h │ └── geom │ │ ├── geom_cylinder.h │ │ ├── geom_wall.h │ │ ├── iges_geom_pcb.h │ │ ├── mcad_elements.h │ │ ├── mcad_helpers.h │ │ ├── mcad_outline.h │ │ ├── mcad_segment.h │ │ └── mcad_utils.h ├── libigesconf.h.in └── tests │ ├── test_circle.cpp │ ├── test_curves.cpp │ ├── test_merge.cpp │ ├── test_outline.cpp │ ├── test_plane.cpp │ ├── test_read.cpp │ └── test_segs.cpp └── tutorial └── src ├── CMakeLists.txt └── tutorial1.cpp /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/.gitmodules -------------------------------------------------------------------------------- /BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/BUGS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeModules/FindSISL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/CMakeModules/FindSISL.cmake -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES.cutouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/NOTES.cutouts -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/README.md -------------------------------------------------------------------------------- /README.testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/README.testing.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/TODO -------------------------------------------------------------------------------- /patches/0001-sisl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/patches/0001-sisl.patch -------------------------------------------------------------------------------- /recipe/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/recipe/bld.bat -------------------------------------------------------------------------------- /recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/recipe/meta.yaml -------------------------------------------------------------------------------- /samples/idftest/NOTES.idf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/NOTES.idf -------------------------------------------------------------------------------- /samples/idftest/arduino-due.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/arduino-due.emn -------------------------------------------------------------------------------- /samples/idftest/arduino-due.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/arduino-due.emp -------------------------------------------------------------------------------- /samples/idftest/crescent.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/crescent.emn -------------------------------------------------------------------------------- /samples/idftest/crescent.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/crescent.emp -------------------------------------------------------------------------------- /samples/idftest/cylinder.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/cylinder.emn -------------------------------------------------------------------------------- /samples/idftest/cylinder.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/cylinder.emp -------------------------------------------------------------------------------- /samples/idftest/overlap.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/overlap.emn -------------------------------------------------------------------------------- /samples/idftest/overlap.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/overlap.emp -------------------------------------------------------------------------------- /samples/idftest/pic_programmer.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/pic_programmer.emn -------------------------------------------------------------------------------- /samples/idftest/pic_programmer.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/pic_programmer.emp -------------------------------------------------------------------------------- /samples/idftest/test_other_outline.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_other_outline.emn -------------------------------------------------------------------------------- /samples/idftest/test_other_outline.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_other_outline.emp -------------------------------------------------------------------------------- /samples/idftest/test_out0.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out0.emn -------------------------------------------------------------------------------- /samples/idftest/test_out0.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out0.emp -------------------------------------------------------------------------------- /samples/idftest/test_out1.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out1.emn -------------------------------------------------------------------------------- /samples/idftest/test_out1.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out1.emp -------------------------------------------------------------------------------- /samples/idftest/test_out2.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out2.emn -------------------------------------------------------------------------------- /samples/idftest/test_out2.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out2.emp -------------------------------------------------------------------------------- /samples/idftest/test_out3.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out3.emn -------------------------------------------------------------------------------- /samples/idftest/test_out3.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_out3.emp -------------------------------------------------------------------------------- /samples/idftest/test_outline.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_outline.emn -------------------------------------------------------------------------------- /samples/idftest/test_outline.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_outline.emp -------------------------------------------------------------------------------- /samples/idftest/test_strange.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_strange.emn -------------------------------------------------------------------------------- /samples/idftest/test_strange.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/test_strange.emp -------------------------------------------------------------------------------- /samples/idftest/video.emn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/video.emn -------------------------------------------------------------------------------- /samples/idftest/video.emp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/samples/idftest/video.emp -------------------------------------------------------------------------------- /sisl_exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/sisl_exports.def -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/dllapi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/README -------------------------------------------------------------------------------- /src/dllapi/dll_entity100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity100.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity102.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity104.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity104.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity110.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity120.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity122.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity124.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity126.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity126.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity128.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity142.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity144.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity308.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity308.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity314.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity314.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity406.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity406.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_entity408.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_entity408.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_iges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_iges.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_iges_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_iges_curve.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_iges_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_iges_entity.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_iges_geom_pcb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_iges_geom_pcb.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_mcad_outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_mcad_outline.cpp -------------------------------------------------------------------------------- /src/dllapi/dll_mcad_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/dllapi/dll_mcad_segment.cpp -------------------------------------------------------------------------------- /src/entities/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/CMakeLists.txt -------------------------------------------------------------------------------- /src/entities/entity100.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity100.cpp -------------------------------------------------------------------------------- /src/entities/entity102.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity102.cpp -------------------------------------------------------------------------------- /src/entities/entity104.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity104.cpp -------------------------------------------------------------------------------- /src/entities/entity108.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity108.cpp -------------------------------------------------------------------------------- /src/entities/entity110.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity110.cpp -------------------------------------------------------------------------------- /src/entities/entity120.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity120.cpp -------------------------------------------------------------------------------- /src/entities/entity122.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity122.cpp -------------------------------------------------------------------------------- /src/entities/entity124.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity124.cpp -------------------------------------------------------------------------------- /src/entities/entity126.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity126.cpp -------------------------------------------------------------------------------- /src/entities/entity128.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity128.cpp -------------------------------------------------------------------------------- /src/entities/entity142.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity142.cpp -------------------------------------------------------------------------------- /src/entities/entity144.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity144.cpp -------------------------------------------------------------------------------- /src/entities/entity154.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity154.cpp -------------------------------------------------------------------------------- /src/entities/entity164.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity164.cpp -------------------------------------------------------------------------------- /src/entities/entity180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity180.cpp -------------------------------------------------------------------------------- /src/entities/entity186.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity186.cpp -------------------------------------------------------------------------------- /src/entities/entity308.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity308.cpp -------------------------------------------------------------------------------- /src/entities/entity314.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity314.cpp -------------------------------------------------------------------------------- /src/entities/entity406.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity406.cpp -------------------------------------------------------------------------------- /src/entities/entity408.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity408.cpp -------------------------------------------------------------------------------- /src/entities/entity502.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity502.cpp -------------------------------------------------------------------------------- /src/entities/entity504.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity504.cpp -------------------------------------------------------------------------------- /src/entities/entity508.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity508.cpp -------------------------------------------------------------------------------- /src/entities/entity510.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity510.cpp -------------------------------------------------------------------------------- /src/entities/entity514.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity514.cpp -------------------------------------------------------------------------------- /src/entities/entityNULL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entityNULL.cpp -------------------------------------------------------------------------------- /src/entities/entity_template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/entity_template.cpp -------------------------------------------------------------------------------- /src/entities/iges_curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/iges_curve.cpp -------------------------------------------------------------------------------- /src/entities/iges_entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/entities/iges_entity.cpp -------------------------------------------------------------------------------- /src/geom/geom_cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/geom_cylinder.cpp -------------------------------------------------------------------------------- /src/geom/geom_wall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/geom_wall.cpp -------------------------------------------------------------------------------- /src/geom/iges_geom_pcb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/iges_geom_pcb.cpp -------------------------------------------------------------------------------- /src/geom/mcad_elements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/mcad_elements.cpp -------------------------------------------------------------------------------- /src/geom/mcad_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/mcad_helpers.cpp -------------------------------------------------------------------------------- /src/geom/mcad_outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/mcad_outline.cpp -------------------------------------------------------------------------------- /src/geom/mcad_segment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/geom/mcad_segment.cpp -------------------------------------------------------------------------------- /src/idf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/CMakeLists.txt -------------------------------------------------------------------------------- /src/idf/gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/gpl-2.0.txt -------------------------------------------------------------------------------- /src/idf/idf2igs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf2igs.cpp -------------------------------------------------------------------------------- /src/idf/idf_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_common.cpp -------------------------------------------------------------------------------- /src/idf/idf_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_common.h -------------------------------------------------------------------------------- /src/idf/idf_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_helpers.cpp -------------------------------------------------------------------------------- /src/idf/idf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_helpers.h -------------------------------------------------------------------------------- /src/idf/idf_outlines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_outlines.cpp -------------------------------------------------------------------------------- /src/idf/idf_outlines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_outlines.h -------------------------------------------------------------------------------- /src/idf/idf_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_parser.cpp -------------------------------------------------------------------------------- /src/idf/idf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/idf/idf_parser.h -------------------------------------------------------------------------------- /src/iges/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # file: iges/CMakeLists.txt 2 | -------------------------------------------------------------------------------- /src/iges/iges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/iges/iges.cpp -------------------------------------------------------------------------------- /src/iges/iges_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/iges/iges_io.cpp -------------------------------------------------------------------------------- /src/iges/mcad_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/iges/mcad_utils.cpp -------------------------------------------------------------------------------- /src/include/api/all_api_entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/all_api_entities.h -------------------------------------------------------------------------------- /src/include/api/dll_entity100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity100.h -------------------------------------------------------------------------------- /src/include/api/dll_entity102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity102.h -------------------------------------------------------------------------------- /src/include/api/dll_entity104.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity104.h -------------------------------------------------------------------------------- /src/include/api/dll_entity110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity110.h -------------------------------------------------------------------------------- /src/include/api/dll_entity120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity120.h -------------------------------------------------------------------------------- /src/include/api/dll_entity122.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity122.h -------------------------------------------------------------------------------- /src/include/api/dll_entity124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity124.h -------------------------------------------------------------------------------- /src/include/api/dll_entity126.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity126.h -------------------------------------------------------------------------------- /src/include/api/dll_entity128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity128.h -------------------------------------------------------------------------------- /src/include/api/dll_entity142.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity142.h -------------------------------------------------------------------------------- /src/include/api/dll_entity144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity144.h -------------------------------------------------------------------------------- /src/include/api/dll_entity308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity308.h -------------------------------------------------------------------------------- /src/include/api/dll_entity314.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity314.h -------------------------------------------------------------------------------- /src/include/api/dll_entity406.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity406.h -------------------------------------------------------------------------------- /src/include/api/dll_entity408.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_entity408.h -------------------------------------------------------------------------------- /src/include/api/dll_iges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_iges.h -------------------------------------------------------------------------------- /src/include/api/dll_iges_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_iges_curve.h -------------------------------------------------------------------------------- /src/include/api/dll_iges_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_iges_entity.h -------------------------------------------------------------------------------- /src/include/api/dll_iges_geom_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_iges_geom_pcb.h -------------------------------------------------------------------------------- /src/include/api/dll_mcad_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_mcad_outline.h -------------------------------------------------------------------------------- /src/include/api/dll_mcad_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/api/dll_mcad_segment.h -------------------------------------------------------------------------------- /src/include/core/all_entities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/all_entities.h -------------------------------------------------------------------------------- /src/include/core/entity100.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity100.h -------------------------------------------------------------------------------- /src/include/core/entity102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity102.h -------------------------------------------------------------------------------- /src/include/core/entity104.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity104.h -------------------------------------------------------------------------------- /src/include/core/entity108.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity108.h -------------------------------------------------------------------------------- /src/include/core/entity110.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity110.h -------------------------------------------------------------------------------- /src/include/core/entity120.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity120.h -------------------------------------------------------------------------------- /src/include/core/entity122.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity122.h -------------------------------------------------------------------------------- /src/include/core/entity124.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity124.h -------------------------------------------------------------------------------- /src/include/core/entity126.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity126.h -------------------------------------------------------------------------------- /src/include/core/entity128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity128.h -------------------------------------------------------------------------------- /src/include/core/entity142.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity142.h -------------------------------------------------------------------------------- /src/include/core/entity144.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity144.h -------------------------------------------------------------------------------- /src/include/core/entity154.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity154.h -------------------------------------------------------------------------------- /src/include/core/entity164.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity164.h -------------------------------------------------------------------------------- /src/include/core/entity180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity180.h -------------------------------------------------------------------------------- /src/include/core/entity184.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity184.h -------------------------------------------------------------------------------- /src/include/core/entity186.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity186.h -------------------------------------------------------------------------------- /src/include/core/entity308.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity308.h -------------------------------------------------------------------------------- /src/include/core/entity314.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity314.h -------------------------------------------------------------------------------- /src/include/core/entity406.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity406.h -------------------------------------------------------------------------------- /src/include/core/entity408.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity408.h -------------------------------------------------------------------------------- /src/include/core/entity430.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity430.h -------------------------------------------------------------------------------- /src/include/core/entity502.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity502.h -------------------------------------------------------------------------------- /src/include/core/entity504.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity504.h -------------------------------------------------------------------------------- /src/include/core/entity508.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity508.h -------------------------------------------------------------------------------- /src/include/core/entity510.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity510.h -------------------------------------------------------------------------------- /src/include/core/entity514.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity514.h -------------------------------------------------------------------------------- /src/include/core/entityNULL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entityNULL.h -------------------------------------------------------------------------------- /src/include/core/entity_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/entity_template.h -------------------------------------------------------------------------------- /src/include/core/iges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/iges.h -------------------------------------------------------------------------------- /src/include/core/iges_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/iges_base.h -------------------------------------------------------------------------------- /src/include/core/iges_curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/iges_curve.h -------------------------------------------------------------------------------- /src/include/core/iges_entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/iges_entity.h -------------------------------------------------------------------------------- /src/include/core/iges_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/core/iges_io.h -------------------------------------------------------------------------------- /src/include/error_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/error_macros.h -------------------------------------------------------------------------------- /src/include/geom/geom_cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/geom_cylinder.h -------------------------------------------------------------------------------- /src/include/geom/geom_wall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/geom_wall.h -------------------------------------------------------------------------------- /src/include/geom/iges_geom_pcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/iges_geom_pcb.h -------------------------------------------------------------------------------- /src/include/geom/mcad_elements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/mcad_elements.h -------------------------------------------------------------------------------- /src/include/geom/mcad_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/mcad_helpers.h -------------------------------------------------------------------------------- /src/include/geom/mcad_outline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/mcad_outline.h -------------------------------------------------------------------------------- /src/include/geom/mcad_segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/mcad_segment.h -------------------------------------------------------------------------------- /src/include/geom/mcad_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/include/geom/mcad_utils.h -------------------------------------------------------------------------------- /src/libigesconf.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/libigesconf.h.in -------------------------------------------------------------------------------- /src/tests/test_circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_circle.cpp -------------------------------------------------------------------------------- /src/tests/test_curves.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_curves.cpp -------------------------------------------------------------------------------- /src/tests/test_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_merge.cpp -------------------------------------------------------------------------------- /src/tests/test_outline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_outline.cpp -------------------------------------------------------------------------------- /src/tests/test_plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_plane.cpp -------------------------------------------------------------------------------- /src/tests/test_read.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_read.cpp -------------------------------------------------------------------------------- /src/tests/test_segs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/src/tests/test_segs.cpp -------------------------------------------------------------------------------- /tutorial/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/tutorial/src/CMakeLists.txt -------------------------------------------------------------------------------- /tutorial/src/tutorial1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbernardo/libIGES/HEAD/tutorial/src/tutorial1.cpp --------------------------------------------------------------------------------