https://github.com/dosymep/revit-bim
Custom exporter from Autodesk Revit to .bim file
https://github.com/dosymep/revit-bim
bim dosymep export revit
Last synced: 10 months ago
JSON representation
Custom exporter from Autodesk Revit to .bim file
- Host: GitHub
- URL: https://github.com/dosymep/revit-bim
- Owner: dosymep
- License: mit
- Created: 2023-08-15T16:20:02.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-17T18:46:34.000Z (almost 3 years ago)
- Last Synced: 2025-04-06T02:41:12.523Z (about 1 year ago)
- Topics: bim, dosymep, export, revit
- Language: C#
- Homepage:
- Size: 5.63 MB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Usage
```csharp
View view = uiApplication.ActiveUIDocument.ActiveView;
Document document = uiApplication.ActiveUIDocument.Document;
document.Export("path/to/sample.bim",
new BimExportOptions() {View = view, WithLinks = true, WithElementInfo = true, WithDocumentInfo = true})
```
# Sample


# Known Issues
It's doesn't work 😂,
because I don't know how to fetch mesh indices correctly.
But I think this project will be good start point to research.