Draft Fillet

Draft Fillet

Menu location
Drafting → Fillet
2D Drafting → Fillet
Workbenches
Draft, BIM
Default shortcut
F I
Introduced in version
0.19
See also
Draft Line, Draft Wire

Description

The Draft Fillet command creates a fillet, a rounded corner, or a chamfer, a straight edge, between two selected edges.

In version 0.21 and below the command only works properly if both selected edges are straight.

In version 1.0 and below if the selected objects have multiple edges, their first edge will be used. This may not be the edge that was picked in the 3D view.

Several fillets and chamfers created between two edges

Usage

  1. Select two edges that meet in a single point.
  2. There are several ways to invoke the command:
    • Press the Fillet button.
    • Draft: Select the Drafting → Fillet option from the menu.
    • BIM: Select the 2D Drafting → Fillet option from the menu.
    • Use the keyboard shortcut: F then I.
  3. Enter the Fillet radius. Note that the command will not succeed if the radius is too large for the selected edge objects.
  4. Optionally check the Delete original objects option.
  5. Optionally check the Create chamfer option.
  6. If you have selected one of the two previous options: Click in the Fillet radius input box.
  7. Press Enter.

Options

Notes

Properties

See also: Property editor.

A Draft Fillet object is derived from a Part Part2DObject and inherits all its properties. It also has the following additional properties:

Data

Draft

View

Draft

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

To create a Draft Fillet use the make_fillet method of the Draft module:

fillet = make_fillet([edge1, edge2], radius=100, chamfer=False, delete=False)

Example:

import FreeCAD as App
import Draft

doc = App.newDocument()

p1 = App.Vector(0, 0, 0)
p2 = App.Vector(1000, 1000, 0)
p3 = App.Vector(2000, 0, 0)

edge1 = Draft.make_line(p1, p2)
edge2 = Draft.make_line(p2, p3)

doc.recompute()

fillet = Draft.make_fillet([edge1, edge2], radius=500)

doc.recompute()