|
Menu location |
---|
Part → 2D Offset |
Workbenches |
Part |
Default shortcut |
None |
See also |
Part Offset 3D, Part Thickness, Draft Offset |
Part 2D Offset constructs a wire, parallel to the original wire, at a certain distance from it. Or enlarges/shrinks a planar face, similarly.
The wire/face must be planar. There can be multiple wires in one object, not necessarily coplanar.
A 2D Offset parametric object is created. Original objects are switched to wireframe display mode.
Offset
Only wires within a compound are coupled. For example, if the structure is like compound(wire1, wire2, compound(wire3, wire4)), wire1 and wire2 will be treated collectively, but independently from wire3 and wire4. Likewise, wire3 and wire4 are treated collectively, but independently of wire1+wire2.
Also, in collective mode, directions of wires are important, and influence direction of offset. This is in tight relationship with how holes in faces are treated.
Wires being treated collectively must be coplanar. Wires being offset independently don't have to be coplanar.
The tool can by used in macros and from the python console by using the following function:
f = App.ActiveDocument.addObject("Part::Offset2D", "Offset2D") f.Source = #some object f.Value = 10.0
2D offset is also available as a method of Part.Shape. Example:
import Part circle = Part.Circle().toShape() enlarged_circle = circle.makeOffset2D(10.0) Part.show(circle) Part.show(enlarged_circle) # makeOffset2D(offset, join = 0, fill = False, openResult = false, intersection = false) # # * offset: distance to expand the shape by. # # * join: method of offsetting non-tangent joints. 0 = arcs, 1 = tangent, 2 = # intersection # # * fill: if true, the output is a face filling the space covered by offset. If # false, the output is a wire/face. # # * openResult: True for "Skin" mode; False for Pipe mode. # # * intersection: collective offset # # Returns: result of offsetting (wire or face or compound of those). Compounding # structure follows that of source shape.
The tool was introduced in FreeCAD v0.17.8350. Most of non-default modes will only work with OCC 7.0.0 or later.