AUTODESK FUSION 360 • COLLABORATION AND SHARING

Exporting for Collaboration — Export/share neutral CAD formats for collaboration (STEP/IGES) (intro)

Learn to share your 3D designs with anyone, regardless of their CAD software, using universal file formats.

Historical Context & Motivation

For decades, designers, engineers, and artists have struggled with a deceptively simple problem: how do you share a three-dimensional model when your collaborator uses entirely different software? In the early days of computer-aided design, every application stored geometry in its own proprietary format, meaning that a sculpture modeled in one program was essentially unreadable in another. This incompatibility slowed down interdisciplinary projects — think of an industrial designer handing off a product form to a mechanical engineer, or a visual artist sending a sculptural prototype to a fabrication studio. The solution that emerged over several decades was the creation of neutral CAD formats — standardized file types that act as a common language between different software ecosystems.

1980
IGES 1.0 Released
The Initial Graphics Exchange Specification (IGES) was published as the first widely adopted neutral CAD format, developed by the U.S. National Bureau of Standards (now NIST) to allow data exchange between dissimilar CAD systems.
1994
STEP Standard Finalized (ISO 10303)
The Standard for the Exchange of Product Model Data (STEP) was ratified as an international ISO standard, offering richer geometry descriptions and support for assembly structures, product metadata, and more complex surface definitions than IGES could handle.
2005
STEP AP214 for Automotive and Design
Application Protocol 214 extended STEP for automotive design workflows, demonstrating the format's versatility for complex, multi-part products — a development that influenced how creative studios collaborate with manufacturing partners.
2013
Fusion 360 Cloud Launch
Autodesk launched Fusion 360 as a cloud-native CAD platform with built-in STEP and IGES export, making neutral-format collaboration accessible to students, artists, and small studios without expensive enterprise licenses.
2020s
Neutral Formats in Art & Fabrication
Contemporary visual artists, product designers, and digital fabrication labs routinely use STEP and IGES to move models between sculpting, rendering, CNC machining, and 3D printing pipelines, cementing these formats as creative-industry essentials.

The central question this lesson addresses is both practical and conceptual: when you finish a design in Fusion 360, how do you export it in a format that any collaborator can open, regardless of whether they use SolidWorks, Rhino, Blender, or a CNC machine's proprietary software? Understanding the answer requires knowing what STEP and IGES files actually contain, why they exist, and when to choose one over the other.

Core Principles & Definitions

Before diving into the export workflow, it is important to understand the foundational ideas that make neutral CAD formats possible. These principles explain why certain information survives the translation process while other data may be lost, and they inform the choices you will make every time you prepare a file for a collaborator.

1

Format Neutrality

A neutral format is not owned by any single software vendor. It stores geometry using standardized mathematical descriptions (NURBS surfaces, boundary representations) so that any compliant application can reconstruct the shapes. Think of it as a PDF for 3D models — a universal container.
2

Boundary Representation (B-Rep)

Both STEP and IGES encode solid geometry as B-Rep data: a description of a solid by its bounding surfaces, edges, and vertices. This is the same internal representation Fusion 360 uses for its solid modeling tools, which is why exports from Fusion tend to be high-fidelity.
3

Lossy vs. Lossless Translation

Exporting to a neutral format is inherently a translation. Geometric data (surfaces, edges) translates well, but parametric history, sketches, constraints, and Fusion-specific features like timeline operations are stripped away. The geometry itself is preserved; the recipe for how it was built is not.
4

STEP vs. IGES: Modern vs. Legacy

STEP (.stp / .step) is the modern standard, supporting solids, assemblies, color, and metadata. IGES (.igs / .iges) is the older standard, best for surface-only geometry. STEP is preferred for most collaborative workflows today; IGES remains useful for legacy systems and certain CNC operations.
5

Interoperability as Design Practice

In professional visual arts and design studios, choosing the right export format is a design decision, not merely a technical afterthought. It determines whether your collaborator receives a watertight solid or a collection of surface patches, and it affects downstream processes like rendering, simulation, and fabrication.
KEY TAKEAWAY
Think of neutral CAD formats like spoken languages at the United Nations: every delegate speaks their native tongue, but UN translators convert everything into a handful of shared languages so everyone can follow. STEP and IGES serve as those shared languages for 3D geometry — they do not capture every nuance of the original (just as translations can lose poetic subtlety), but they convey the essential meaning faithfully enough for productive collaboration.

Visual Explanation — The Export Pipeline

The following diagram illustrates the complete pipeline from a Fusion 360 design to a collaborator's application. Notice how the native Fusion file — rich with parametric history, sketches, and timeline features — passes through an export translation stage where only the geometric boundary representation (B-Rep) and basic metadata are written into the neutral STEP or IGES file. The receiving application then imports that neutral file into its own internal representation.

The left column shows everything stored in a native Fusion 360 file. The center column shows what survives the export to STEP or IGES — notice that parametric history, sketch constraints, and timeline features are lost during translation. The right column lists common applications that can import the resulting neutral file.

The key insight from this diagram is that exporting to STEP or IGES is a deliberate act of simplification. You are distilling your design down to its geometric essence — the shapes, positions, and relationships of surfaces and solids — while stripping away the software-specific instructions that produced them. This is analogous to flattening a layered Photoshop file to a TIFF: the final image is preserved perfectly, but the individual adjustment layers, masks, and smart objects are merged and can no longer be independently edited. For collaboration purposes, this trade-off is usually acceptable because your collaborator needs the geometry, not your modeling process.

How STEP and IGES Encode Geometry

Although STEP and IGES are not formats you will typically read as raw text, understanding how they encode geometry helps you make better export decisions. Both formats describe surfaces mathematically using Non-Uniform Rational B-Splines (NURBS), which are the same mathematical curves and surfaces that Fusion 360 uses internally. A NURBS surface is defined by a set of control points, weights, and knot vectors that together describe a smooth, continuous surface patch. When Fusion 360 exports your model, it writes these mathematical descriptions into the neutral file.

STEP File Structure

A STEP file (formally ISO 10303-21) is a plain-text file organized into an EXPRESS schema. Each geometric entity — a face, an edge, a vertex, a surface definition — is assigned a unique entity number and described using standardized keywords. For example, a planar face references a PLANE entity, while a freeform surface references a B_SPLINE_SURFACE_WITH_KNOTS entity. The file also stores topological relationships — which faces share an edge, which edges meet at a vertex — ensuring the solid is watertight (no gaps or overlaps in the boundary).

IGES File Structure

An IGES file uses a fixed-width, column-based text format that dates back to the era of punch cards. Each entity is described by a type number: for instance, entity type 128 is a rational B-spline surface, and entity type 126 is a rational B-spline curve. Unlike STEP, IGES does not inherently describe solid topology — it stores individual surface patches that the receiving application must stitch together to reconstruct a solid. This is the fundamental reason STEP is generally preferred: STEP guarantees a watertight solid, while IGES may produce a collection of unstitched surfaces that require manual repair.

💡 NURBS Basics for Visual Artists
If you have used Bézier curves in Illustrator or pen-tool paths in Photoshop, you already have an intuition for NURBS. A Bézier curve is actually a special case of a NURBS curve. When Fusion exports a model to STEP, it is essentially saving every surface as a grid of interconnected, weighted Bézier-like patches — a mathematical description that any NURBS-capable application can reconstruct with perfect accuracy.

The mathematical fidelity of this process is remarkable. Because both Fusion 360 and the receiving application use NURBS internally, the exported geometry is not approximated — it is mathematically exact. Unlike mesh formats such as STL or OBJ, which approximate curved surfaces with flat triangles, STEP and IGES preserve the true analytic definition of every curve and surface. This is why these formats are preferred for precision fabrication, CNC machining, and any workflow where dimensional accuracy matters.

STEP vs. IGES — Detailed Comparison

Choosing between STEP and IGES is one of the most common decisions you will face when exporting from Fusion 360. The following diagram and table provide a visual and textual comparison of the two formats across the dimensions that matter most to visual arts collaborators: geometry fidelity, assembly support, color and appearance data, and downstream compatibility.

Green circles indicate a strength, amber circles indicate a caveat, and red circles indicate a limitation. STEP is recommended for most collaborative workflows because it preserves solid topology, assembly structure, and color data. IGES remains useful when working with older CNC machines or when only surface data is needed.
Feature comparison between STEP and IGES neutral formats
FeatureSTEP (.stp)IGES (.igs)
Solid GeometryFull B-Rep solids with watertight topologySurface patches; stitching may be required
AssembliesHierarchical assembly trees with component namesNo assembly support; all geometry flattened
Color / AppearancePer-face and per-body color; basic material namesLimited color via entity properties; inconsistent
File SizeLarger (more metadata)Smaller (less metadata)
Standard StatusActive ISO standard; regularly updatedFrozen since 1996; no further development
Best Use CaseGeneral collaboration, fabrication, renderingLegacy CNC systems, surface-only geometry

Worked Example — Exporting a Product Design from Fusion 360

Imagine you have designed a ceramic vase in Fusion 360 as part of a collaborative project with a ceramics studio. The studio uses Rhino to prepare files for their CNC milling robot, and they have asked you to send the model in a format they can open. Here is the step-by-step workflow for exporting your design as a STEP file.

Exporting a Vase Design as STEP from Fusion 360
1
Step 1 — Verify Your DesignBefore exporting, inspect your model for errors. In Fusion 360, open the Design workspace and ensure there are no red error icons in the timeline or the browser tree. If the vase body is a solid (not a surface), you will see it listed under Bodies rather than Surface Bodies. A solid body guarantees a watertight export.
Model verified as a watertight solid body with no timeline errors.
2
Step 2 — Open the Export DialogNavigate to File → Export from the top menu bar (or use the keyboard shortcut). The Export dialog window will appear, showing a file name field, a location field, and a Type dropdown. The Type dropdown is where you select your neutral format.
Export dialog open with Type dropdown visible.
3
Step 3 — Select STEP as the Export TypeClick the Type dropdown and select STEP (*.stp). If your collaborator specifically requests IGES, you would select IGES (*.igs) instead. For this scenario, STEP is the better choice because the ceramics studio needs a watertight solid for CNC machining, and STEP preserves solid topology.
Export type set to STEP (*.stp).
4
Step 4 — Name and Save the FileGive the file a clear, descriptive name — for example, Vase_DesignV3_2025-01-15.stp. Including the version number and date in the file name is a best practice for collaborative workflows because it prevents confusion when multiple iterations are exchanged. Choose a save location (local drive or cloud folder) and click Export.
File saved as Vase_DesignV3_2025-01-15.stp.
5
Step 5 — Verify and SendAs a quality-assurance step, re-import the exported .stp file into Fusion 360 via File → Open or Insert → Insert Mesh/Insert DXF (use Open for STEP). Compare the re-imported geometry against your original to confirm all surfaces are intact and no geometry was lost. Once verified, send the file to your collaborator via email, a shared cloud folder, or Fusion 360's built-in sharing features.
Export verified — watertight solid matches original. File ready for collaboration.
Pro Tip: Exporting Specific Components
If your Fusion 360 project contains multiple components (e.g., a vase and its lid as separate bodies), you can right-click a specific component in the browser tree and choose Save As STL / Save As options, or you can make only the desired component visible before exporting. When you export via File → Export, Fusion exports all visible geometry. Hiding components you do not want to share is a quick way to control what goes into the neutral file.

Strengths, Limitations & When to Use Each Format

No file format is perfect for every situation. Understanding the trade-offs of STEP and IGES — and how they compare to other common formats — empowers you to make informed decisions that serve both your creative vision and your collaborator's technical needs. The table below positions STEP and IGES alongside other formats you may encounter in visual arts workflows.

Comparison of common export formats available in Fusion 360
FormatTypeStrengthsLimitations
STEP (.stp)Neutral, B-RepExact geometry, assemblies, color, watertight solids, widely supportedNo parametric history, no texture maps, larger files
IGES (.igs)Neutral, SurfaceWide legacy support, smaller files, good for surface-only dataNo assemblies, surfaces may need stitching, frozen standard
STL (.stl)MeshUniversal for 3D printing, simpleApproximated (faceted) geometry, no color, no curves
OBJ (.obj)MeshSupports textures/UVs, widely used in renderingApproximated geometry, not suitable for precision machining
F3D (.f3d)Native FusionFull parametric history, sketches, timelineOnly opens in Fusion 360; not suitable for cross-platform sharing
KEY TAKEAWAY
Choosing an export format is like choosing a shipping container for artwork. If you are sending a painting, you need a crate that preserves the canvas, frame, and dimensions exactly (analogous to STEP for precise geometry). If you are sending a rough maquette for reference, a simpler box works fine (analogous to STL for approximate shape). And if you are sending to someone in the same studio who uses the same tools, you can just hand them the original (analogous to the native .f3d file). Always ask your collaborator what format they need before exporting.

Connection to Advanced Collaboration Workflows

Exporting STEP and IGES files is the foundational layer of CAD collaboration, but Fusion 360 offers more sophisticated tools for teams working on complex projects. Understanding where neutral-format exports fit within this broader landscape will prepare you for advanced coursework and professional practice.

Introductory vs. advanced collaboration workflows in Fusion 360
ConceptIntroductory (This Lesson)Advanced (Future Topics)
File SharingExport STEP/IGES, email or upload to shared folderFusion 360 cloud sharing with live link, version control, and access permissions
Geometry TransferStatic snapshot of geometry at time of exportReferenced components that update when the source design changes
Collaboration ModelAsynchronous: export → send → importSynchronous: real-time co-editing in shared Fusion 360 projects
Format IntelligenceGeometry only (B-Rep), no design intentSTEP AP242 with PMI (Product Manufacturing Information), tolerances, and annotations embedded in the file
Feedback LoopCollaborator modifies imported geometry independentlyDesign reviews with markup, comments, and approval workflows inside Fusion 360 Team hub

As you advance, you will encounter STEP AP242, the latest application protocol that embeds tolerances, GD&T annotations, and product manufacturing information directly in the file — essentially turning a neutral format into a complete manufacturing instruction set. You will also explore Fusion 360's cloud collaboration features, which bypass file exports entirely by allowing multiple users to work on the same design simultaneously. For now, mastering the STEP and IGES export workflow gives you a reliable, universally understood method for sharing geometry with any collaborator in any CAD environment.

Practice Problems

PROBLEM 1CONCEPTUAL
A classmate says, "I exported my Fusion 360 model as a STEP file, but when my collaborator opened it in Rhino, all my sketches and parametric timeline features were gone." Explain why this happened and whether it indicates an error in the export process.
PROBLEM 2BASIC CALCULATION
You have a Fusion 360 assembly with 12 components. You need to export it for a CNC shop that uses Mastercam. Which neutral format should you choose, and why? What would happen if you chose the other format?
PROBLEM 3INTERMEDIATE
You are collaborating with three different partners: (A) a jewelry maker using a 15-year-old CNC mill that only accepts IGES, (B) a rendering artist using KeyShot, and (C) a fellow Fusion 360 user. What format would you export for each collaborator, and what data considerations apply in each case?
PROBLEM 4APPLIED
You are a product design student preparing a portfolio piece — a lamp design modeled in Fusion 360. You need to send the model to: (1) a metal fabrication shop for CNC milling the base, (2) a glass-blowing studio for reference on the shade shape, and (3) your instructor for a design review. Outline your complete export strategy, including file naming conventions and verification steps.
PROBLEM 5CRITICAL THINKING
STEP is widely described as the superior neutral format compared to IGES, yet IGES has not disappeared from professional practice. Construct an argument for why IGES persists in certain industries, and then evaluate whether the visual arts and digital fabrication community should standardize entirely on STEP or maintain dual-format fluency.

Lesson Summary

This lesson introduced the concept of neutral CAD formats — standardized file types that enable cross-platform collaboration regardless of which software each collaborator uses. We explored the two most important neutral formats: STEP (.stp), the modern ISO standard that preserves watertight solid geometry, assembly hierarchy, and color data; and IGES (.igs), the legacy standard best suited for surface-only geometry and older CNC systems. Both formats encode surfaces using NURBS mathematics, ensuring exact geometric fidelity rather than the faceted approximations of mesh formats like STL or OBJ.

The practical workflow in Fusion 360 is straightforward: File → Export → select STEP or IGES → save. However, thoughtful practitioners also verify their exports by re-importing the file, use clear version-dated file naming, and choose the format based on their collaborator's needs — defaulting to STEP for most workflows and falling back to IGES for legacy compatibility. Remember that neutral formats preserve geometry but strip away parametric history — a trade-off that is the defining characteristic of format-neutral collaboration.

Varsity Tutors • Autodesk Fusion 360 • Exporting for Collaboration — Export/share neutral CAD formats for collaboration (STEP/IGES) (intro)