C++ Exporter [SYNTH-107] - #1290
Merged
Merged
Conversation
BrandonPacewic
marked this pull request as ready for review
June 17, 2026 20:49
BrandonPacewic
requested review from
PepperLola and
azaleacolburn
and removed request for
a team
June 17, 2026 20:49
There was a problem hiding this comment.
Pull request overview
Introduces Isotope, a new C++ Fusion 360 add-in intended to export Fusion robot designs into mirabuf (.mira) as a replacement for the existing Python exporter, including a CMake-based build/install workflow and initial joint/material/component mapping.
Changes:
- Added Fusion add-in entrypoints (
run/stop) and command wiring to trigger export. - Implemented initial export pipeline: map materials, parts/components, joints, and joint/part hierarchy into
mirabuf::Assembly, then serialize to.mira. - Added CMake build configuration (including protobuf generation via submodule) plus manifest and formatting config.
Reviewed changes
Copilot reviewed 24 out of 30 changed files in this pull request and generated 15 comments.
Show a summary per file
| File | Description |
|---|---|
| isotope/src/util.cpp | GUID helpers and UUID generation used across mappings |
| isotope/inc/util.h | Shared helpers (type-name checks, Info creation, GUID helpers) |
| isotope/src/parser.cpp | End-to-end export flow: build Assembly, prompt save dialog, write .mira |
| isotope/inc/parser.h | Export API declaration |
| isotope/src/materials.cpp | Appearance + physical material mapping into mirabuf |
| isotope/inc/materials.h | Materials mapping API declaration |
| isotope/src/components.cpp | Parts/instances/meshes mapping + rigid group mapping |
| isotope/inc/components.h | Components/parts mapping API declaration |
| isotope/src/joints.cpp | Joint + signal mapping and joint graph creation |
| isotope/inc/joints.h | Joints mapping API declaration |
| isotope/src/joint_hierarchy.cpp | Joint→parts hierarchy construction logic |
| isotope/inc/joint_hierarchy.h | Joint hierarchy API declaration |
| isotope/src/isotope.cpp | Fusion UI integration: adds toolbar panel/button and hooks command handlers |
| isotope/src/context.cpp | Global Fusion app/UI context initialization and validation |
| isotope/inc/context.h | Global context struct declaration |
| isotope/src/config_command.cpp | Command handlers to trigger export |
| isotope/inc/config_command.h | Command handler class declarations |
| isotope/isotope.manifest | Fusion add-in manifest metadata |
| isotope/CMakeLists.txt | CMake project setup, Fusion API linkage, protobuf generation, install step |
| isotope/CMakePresets.json | Configure/build workflows for debug/release |
| isotope/.clang-format | Formatting rules for the new C++ code |
| isotope/.gitignore | Ignore build artifacts/compile commands for the isotope project |
| .gitmodules | Adds protobuf as a submodule dependency |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Collaborator
Dhruv-0-Arora
approved these changes
Jun 22, 2026
Dhruv-0-Arora
left a comment
Collaborator
There was a problem hiding this comment.
Everything is really well written. There isn't anything that I think is preventing this from getting merged so we can begin to iterate on it.
PepperLola
approved these changes
Jul 9, 2026
PepperLola
left a comment
Member
There was a problem hiding this comment.
doesn't crash for me anymore
Merged
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

SYNTH-107
Initial implementation of Isotope, a C++ Fusion 360 add-in that replaces the existing Python exporter.
This is an opinionated PR; please include an opinionated review.
This includes:
Dependencies
Testing
git submodule update --init)isotope/directory, runcmake --workflow --preset buildcmake --install buildto deploy the add-in to FusionShift+S > Add-Ins > isotope > Run.mirafileNext Steps
The following will come in subsequent PRs into this feature branch before it replaces the Python exporter: