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!


GuiCommand: Name: Part Extrude MenuLocation: Part , Extrude... Workbenches: Part_Workbench SeeAlso: Draft_Trimex, PartDesign_Pad

Part Extrude

Description

Part Extrude extends a shape by a specified distance, in a specified direction. The output shape type will vary depending on the input shape type and the options selected.

In most common scenarios, the following lists the expected output shape type from a given input shape type,

  • Extrude a Vertex (point), will produce a lineal Edge (Line)
  • Extrude a open edge (e.g. line, arc), will produce a open face (e.g. plane)
  • Extrude a closed edge (e.g. circle), will optionally produce a closed face (e.g. an open ended cylinder) or if the parameter \"solid\" is \"true\" will produce a solid (e.g. a closed solid cylinder)
  • Extrude a open Wire (e.g. a Draft Wire), will produce a open shell (several joined faces)
  • Extrude a closed Wire (e.g. a Draft Wire), will optionally produce a shell (several joined faces) or if the parameter \"solid\" is \"true\" will produce a solid
  • Extrude a face (e.g. plane), will produce a solid (e.g. Cuboid)
  • Extrude a [ Draft ShapeString, will produce a compound of solids (the string is a compound of the letters which are each a solid)
  • Extrude a shell of faces, will produce a Compsolid.

600px

Examples of extrusion

Usage

  1. Select the shape(s) in the 3D view or in the Model tree view
  2. Click on the Part Extrude button in the toolbar, or go to the Part → Extrude... menu
  3. Set the direction and length and optionally other parameters (see the following Parameters section for more details).
  4. Click OK.

Alternatively, the selection can be done after launching the tool, by selecting one or more shape from the list in the Tasks panel.

The Model tree will list as many Extrude objects as there were selected shapes. Each input shape is placed underneath its Extrude object.

Parameters

The Extrude shape is defined by the following parameters, which can be edited after its creation in the Property editor.

  • Base: the input shape (the shape upon which the Part Extrude was applied).

  • Dir: the direction to extend the shape. If Dir Mode is \'Custom\', you can edit Dir. Otherwise, Dir is read-only, and computed from the linked shape.

  • Dir Link: parametric link to an edge (line) that sets the direction of extrusion.

  • Dir Mode: sets how Dir is controlled. \'Custom\' means Dir is editable. \'Edge\' means Dir is obtained from an edge (line) linked by Dir Link. \'Normal\' means Dir is perpendicular to the plane of the input shape.

  • Length Fwd: The distance to extrude by. If both Length Fwd and Length Rev are zero, the length of Dir vector is used.

  • Length Rev: Additional length to extrude against Dir.

  • Solid: if True, extruding a closed edge or a closed wire will yield a solid. If False, a shell will result.

  • Reversed: reverses the extrusion to go against Dir.

  • Symmetric: if True, extrusion is centered at the input shape, and total length is Length Fwd. Length Rev is ignored.

  • Taper Angle and Taper Angle Rev: applies an angle to the extrusion, so that sides of the extrusion are drafted by the specified angle. Positive angle means the cross-section expands. Taper Angle Rev sets the taper for the reversed part of the extrusion (the part from Length Rev).

    <small>(v0.20)</small> 
    
    Inner structures receive the opposite taper angle. This is done to facilitate the design of molds and molded parts.
    • {{VersionMinus|0.19}}

      Tapered extrusion is only supported for shapes without inner structures. Taper does not work well if the shape contains B-splines.

  • Face Maker Class: sets C++ class name of face making code, which is used when making solids from wires. This property is here mainly for maintaining backward compatibility. Do not touch, unless you know what you are doing.

  • Placement: the standard placement parameters.

  • Label: label to be shown in the Model tree view (not available on Extrude creation).

Task dialog

  • OKbutton creates the extrusion, and closes the dialog.

  • Closebutton closes dialog, without doing anything.

  • Applybutton creates the extrusion, but does not close the dialog. You can then select another shape in the list on the bottom, and create more extrusions. Clicking Apply may times creates many extrusions.

  • \'Direction\' radio buttons: set the way extrusion direction is computed.

  • Selectbutton: click it, and then pick an edge in 3D view. That edge will appear in text field next to the button, in format \"ObjectName:EdgeN\". You can also type the link manually. Values X,Y,Z will be filled according to the edge direction.

  • X, Y, Z buttons: Click x button to set extrusion direction to +x axis. Click it again to set -x axis.

  • X, Y, Z input fields: set or display the direction vector of extrusion. If both lengths are zero, the length of this vector sets the length of extrusion, and values are always in mm, regardless of unit preferences.

  • Length fields: set length of extrusion. These input fields have unit support.

  • Symmetric: spreads out the extrusion into both directions, so that the profile remains in the middle.

  • Taper Outward Angle: positive angle means profile is expanded at other end of extrusion.

  • Create Solid checkbox: if checked, extruding a closed wire or edge will yield a solid. It is checked by default, if a closed wire was preselected before invoking Part Extrude.

  • Shape list: here you select, what shapes to extrude. If multiple objects are selected, multiple Extrude objects are created.

Notes

  • App Link objects linked to the appropriate object types and App Part containers with the appropriate visible objects inside can also be used as profiles and to specify the direction. (v0.20)

  • The task dialog does not offer a preview, yet. Apply will create an extrusion object every time you click it, which can be useful as preview; however, they will remain and yet another one will be created as you click OK. Undo can be useful to clean them up before clicking OK.

Comparison with PartDesign Pad

PartDesign Pad is also an extrusion feature, but there are important differences:

  • Part Extrude always creates a standalone shape. PartDesign Pad fuses the extrusion result to the rest of the Body.
  • Part Extrude doesn\'t care where it is in model tree. PartDesign Pad can only live inside a PartDesign Body.
  • Part Extrude can extrude any object that has a Part geometry (wiki-test2.php?gitpage=OpenCASCADE shape), except for solids and CompSolids.
  • Part Extrude can extrude individual faces of other objects. PartDesign Pad will only accept either Sketch or faces of PartDesign objects as a profile.

{{Part_Tools_navi}}


⏵ documentation index > Part > Part Extrude

This page is retrieved from https://github.com/FreeCAD/FreeCAD-documentation/blob/main/wiki/Part_Extrude.md

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