FreeCAD Logo FreeCAD 1.0
  • English Afrikaans Arabic Belarusian Catalan Czech German Greek Spanish Spanish Basque Finnish Filipino French Galician Croatian Hungarian Indonesian Italian Japanese Kabyle Korean Lithuanian Dutch Norwegian Bokmal Polish Portuguese Portuguese Romanian Russian Slovak Slovenian Serbian Swedish Turkish Ukrainian Valencian Vietnamese Chinese Chinese
  • Features
  • Download
  • Blog
  • Documentation
    Documentation index Getting started Users documentation The FreeCAD manual Workbenches documentation Python coding documentation C++ coding documentation Tutorials Frequently asked questions Privacy policy About FreeCAD
  • Contribute
    How to help Sponsor Report a bug Make a pull request Jobs and funding Contribution guidelines Developers handbook Translations
  • Community
    Code of conduct Forum The FPA GitHub GitLab Codeberg Mastodon Matrix IRC IRC via Webchat Gitter Discord Reddit Twitter Facebook LinkedIn Calendar
  • ♥ Donate

Donate

$
SEPA Information
Please set up your SEPA bank transfer to:
Beneficiary: The FreeCAD project association
IBAN: BE04 0019 2896 4531
BIC/SWIFT: GEBABEBBXXX
Bank agency: BNP Paribas Fortis
Address: Rue de la Station 64, 1360 Perwez, Belgium

While Stripe doesn't support monthly donations, you can still become a sponsor! Simply make a one-time donation equivalent to 12 months of support, and you'll gain access to the corresponding sponsoring tier. It's an easy and flexible way to contribute.

If you are not sure or not able to commit to a regular donation, but still want to help the project, you can do a one-time donation, of any amount.

Choose freely the amount you wish to donate one time only.

You can support FreeCAD by sponsoring it as an individual or organization through various platforms. Sponsorship provides a steady income for developers, allowing the FPA to plan ahead and enabling greater investment in FreeCAD. To encourage sponsorship, we offer different tiers, and unless you choose to remain anonymous, your name or company logo will be featured on our website accordingly.

from 1 USD / 1 EUR per month. You will not have your name displayed here, but you will have helped the project a lot anyway. Together, normal sponsors maintain the project on its feet as much as the bigger sponsors.

from 25 USD / 25 EUR per month. Your name or company name is displayed on this page.

from 100 USD / 100 EUR per month. Your name or company name is displayed on this page, with a link to your website, and a one-line description text.

from 200 USD / 200 EUR per month. Your name or company name and logo displayed on this page, with a link to your website and a custom description text. Companies that have helped FreeCAD early on also appear under Gold sponsors.

Instead of donating each month, you might find it more comfortable to make a one-time donation that, when divided by twelve, would give you right to enter a sponsoring tier. Don't hesitate to do so!

Choose freely the amount you wish to donate each month.

Please inform your forum name or twitter handle as a notein your transfer, or reach to us, so we can give you proper credits!

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

SolveAssembly
CreateSimulation
Assembly

Assembly CreateView

Menu location
Assembly → Exploded View
Workbenches
Assembly
Default shortcut
E
Introduced in version
1.0
See also
None

Description

The Assembly CreateView tool creates an exploded views container (Exploded_Views object) in the active Assembly that contains one (default) or more exploded views (Exploded_View objects). An assembly can only hold one exploded views container.

An exploded view collects the moves (Move objects) used to relocate parts from assembled position to exploded position. The altered positions of assembled parts and the representations of the moves are only visible when an exploded view is being edited and in TechDraw views derived from an exploded view.

Usage

  1. Make sure an assembly is active.
  2. There are several ways to invoke the tool:
    • Press the Exploded View button.
    • Select the Assembly → Exploded View option from the menu.
    • Use the keyboard shortcut: E.
  3. If no Exploded_Views object pre-exists: An Exploded_Views container is added to the active assembly.
  4. An Exploded_View object is added to the Exploded_Views container.
  5. The Create Exploded View dialog opens in the task panel.
  6. Optionally check Parts as single solid checkbox to…
  7. Optionally choose one way to add a Move:
    • Explode radially:
      1. Press Explode Radially
      2. All parts are selected and a dragger (see Notes) appears.
      3. Optionally realign the dragger by selecting one option from the Align dragger to… drop-down list.
        • Align to…
          1. Select an edge or a face of any part to align the dragger.
        • Align to part center.
          1. The dragger is aligned according to the grounded part's center.
        • Align to part origin.
          1. The dragger is aligned according to the grounded part's origin.
      4. Move the dragger by one or more of the following options (only the offset from the start point counts, each part's direction is calculated separately):
        • Press and hold the left mouse button on an axis arrow and drag to translate the object along that axis.
        • Press and hold the left mouse button on a plane and drag to translate the object along that plane.
        • Press and hold the left mouse button on a sphere and drag to rotate the object around that axis.
      5. A Move (see Notes) is added once the left mouse button is released.
    • Explode along separate movements:
      1. Select one or more parts.
      2. A dragger appears.
      3. Optionally realign the dragger (see above).
      4. Move the dragger as described above (the directions according to the dragger handles are taken into account).
      5. A Move is added once the left mouse button is released.
      6. Optionally select/deselect parts and/or repeat dragging to add more Moves.
  8. Do one of the following:
    • Press the OK button to confirm and finish the tool.
    • Press the Cancel button to revert all changes and finish the tool.
  9. All parts are moved back into their assembly position and the connecting lines are hidden.

Notes

  • The dragger is a tool similar to the transformation manipulator ( Std TransformManip), but without an Increments task panel.
  • A Move object in the Tree View is represented in the 3D View by a dashed red line for each part involved in this move. These connecting lines are only visible when this tool is running, or in a TechDraw view that is derived from an Exploded_View object.
  • To add an exploded view to a TechDraw page: switch to the TechDraw Workbench, add a page, select the exploded view object in the tree, and click Insert View.

Properties

See also: Property View.

Exploded_Views containers are Assembly::ViewGroup objects. Exploded_View objects are derived from the ExplodedView class, and Move objects from the ExplodedViewStep class.

Assembly::ViewGroup

Data

Base

  • DataLabel (String):
  • Data (Hidden)Label2 (String):
  • Data (Hidden)Expression Engine (ExpressionEngine):
  • Data (Hidden)Visibility (Bool):
  • DataGroup (LinkList):
  • Data (Hidden)_ Group Touched (Bool):

View

Display Options

  • ViewDisplay Mode (Enumeration):
  • ViewShow In Tree (Bool):
  • ViewVisibility (Bool):

Selection

  • ViewOn Top When Selected (Enumeration):
  • ViewSelection Style (Enumeration):

ExplodedView

An ExplodedView object is derived from an App FeaturePython object and inherits all its properties. It also has the following additional properties:

Data

Exploded View

  • DataMoves (LinkList): List of the Move objects of the exploded view.

ExplodedViewStep

An ExplodedViewStep object is derived from an App FeaturePython object and inherits all its properties. It also has the following additional properties:

Data

Exploded Move

  • DataMove Type (Enumeration): The Type of the move. (Normal, Radial).
  • DataMovement Transform (Placement): This is the movement of the move.
    The end placement is the result of the start placement * this placement.
  • DataObj Names (StringList): The objects moved by the move.
  • DataParts (LinkList): The containing parts of objects moved by the move.


SolveAssembly
CreateSimulation
Assembly

This page is retrieved from https://wiki.freecad.org/Assembly_CreateView

Get in touch!
Forum GitHub Mastodon Matrix IRC Gitter.im Discord Reddit Twitter Facebook LinkedIn

© The FreeCAD Team. Homepage image credits (top to bottom): ppemawm, r-frank, epileftric, regis, rider_mortagnais, bejant.

This project is supported by: , KiCad Services Corp. and other sponsors

GitHubImprove this page on GitHub