├── LICENSE ├── README.txt ├── iges ├── __init__.py ├── constants.py ├── curves_surfaces.py └── entity.py └── read_IGES.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/IGES-File-Reader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/IGES-File-Reader/HEAD/README.txt -------------------------------------------------------------------------------- /iges/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | -------------------------------------------------------------------------------- /iges/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/IGES-File-Reader/HEAD/iges/constants.py -------------------------------------------------------------------------------- /iges/curves_surfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/IGES-File-Reader/HEAD/iges/curves_surfaces.py -------------------------------------------------------------------------------- /iges/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/IGES-File-Reader/HEAD/iges/entity.py -------------------------------------------------------------------------------- /read_IGES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cfinch/IGES-File-Reader/HEAD/read_IGES.py --------------------------------------------------------------------------------