gitextract_c7p8ffb8/ ├── .gitattributes ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── import_3dm/ │ ├── __init__.py │ ├── blender_manifest.toml │ ├── converters/ │ │ ├── __init__.py │ │ ├── annotation.py │ │ ├── curve.py │ │ ├── groups.py │ │ ├── instances.py │ │ ├── layers.py │ │ ├── material.py │ │ ├── pointcloud.py │ │ ├── rdk_manager.py │ │ ├── render_mesh.py │ │ ├── utils.py │ │ └── views.py │ ├── read3dm.py │ └── wheels/ │ ├── rhino3dm-8.17.0-cp311-cp311-linux_aarch64.whl │ ├── rhino3dm-8.17.0-cp311-cp311-linux_x86_64.whl │ ├── rhino3dm-8.17.0-cp311-cp311-macosx_13_0_universal2.whl │ ├── rhino3dm-8.17.0-cp311-cp311-win_amd64.whl │ ├── rhino3dm-8.17.0-cp313-cp313-linux_aarch64.whl │ ├── rhino3dm-8.17.0-cp313-cp313-linux_x86_64.whl │ ├── rhino3dm-8.17.0-cp313-cp313-macosx_13_0_universal2.whl │ └── rhino3dm-8.17.0-cp313-cp313-win_amd64.whl ├── requirements.txt └── test/ ├── pytest.ini_example ├── pytest_setup.md ├── test_import_3dm.py └── units/ ├── boxes_in_cm.3dm ├── boxes_in_ft.3dm ├── boxes_in_in.3dm ├── boxes_in_m.3dm ├── boxes_in_mm.3dm └── unit_conversion_testing.blend