A Fusion 360 add-in for creating parametric geodesic spheres (Buckminster Fuller domes).
This add-in generates geodesic spheres using icosahedron subdivision, allowing you to create precise geodesic dome structures directly in Fusion 360. Named in honor of Buckminster Fuller, the architect and designer who popularized geodesic dome structures.
- Parametric geodesic sphere generation using icosahedron subdivision
- Adjustable frequency for controlling the complexity of the dome
- Customizable radius for different dome sizes
- Clean, triangulated mesh suitable for structural analysis and fabrication
- Integrated into Fusion 360's CREATE panel for easy access
- Download or clone this repository
- Copy the
BuckminsterFusionfolder to your Fusion 360 add-ins directory:- Windows:
%appdata%\Autodesk\Autodesk Fusion 360\API\AddIns\ - macOS:
~/Library/Application Support/Autodesk/Autodesk Fusion 360/API/AddIns/
- Windows:
- Launch Fusion 360
- Go to Tools → Add-Ins → Scripts and Add-Ins
- Select the Add-Ins tab
- Find "Buckminster Fusion" in the list and click Run
- After installation, find the Buckminster Fusion command in the CREATE panel (SOLID tab)
- Click the command to open the dialog
- Adjust parameters:
- Radius: The radius of the geodesic sphere
- Frequency: The subdivision frequency (higher = more triangular faces)
- Click OK to generate the geodesic sphere
⚠️ Performance Warning: Higher frequency values (4+) generate a large number of faces and may cause slow performance or freezing in Fusion 360. Start with lower frequencies (2-3) and increase gradually based on your system's capabilities.
The add-in uses a classic icosahedron subdivision algorithm:
- Creates a base icosahedron (20-sided polyhedron)
- Subdivides each triangular face based on the frequency parameter
- Projects all vertices onto a sphere surface
- Merges duplicate vertices
- Generates the final triangulated mesh
BuckminsterFusion.py- Main add-in script with UI integrationlib/geodesic_math.py- Core geodesic sphere calculation logicBuckminsterFusion.manifest- Add-in metadata and configurationresources/- Icon resources for the add-in16x16.svg- Small icon (16×16px)32x32.svg- Medium icon (32×32px)fuller_glasses_icon.svg- Main icon featuring Buckminster Fuller's iconic thick-rimmed glasses
The geodesic calculation is based on the pyDome approach, adapted for Fusion 360's API. It ensures proper vertex merging to avoid duplicate points and maintains clean topology suitable for 3D modeling and fabrication.
While the geodesic dome concept was first developed in Germany by Walter Bauersfeld for Carl Zeiss and Leica in the 1920s (notably for planetarium construction), R. Buckminster Fuller (1895-1983) was an American architect, systems theorist, and inventor who popularized and extensively developed the geodesic dome structure. His designs demonstrated that spherical structures made of triangular elements are remarkably strong and efficient, using minimal materials to enclose maximum volume. Fuller's work brought geodesic domes into mainstream architecture and engineering.
Current version: 1.0.0
- Windows
- macOS
This project is open source. See repository for details.
Contributions are welcome! Please feel free to submit issues or pull requests.