A Part Part2DObject, or formally a Part::Part2DObject
, is a simple element with a topological shape associated that can be displayed in the 3D view.
The Part::Part2DObject
is derived from a Part Feature, but is specialized for 2D geometry, given that its shape will lie on a plane. This plane is defined by its Placement property (position, normal, and rotation). However, the plane can also be defined by supporting geometrical elements, such as the plane created by three arbitrary vertices, or a face of a solid body.
*Simplified diagram of the relationships between the core objects in the program. The Part::Part2DObject* class is specialized for 2D shapes, so it is the base class for planar objects created with the Draft and Sketcher workbenches. It includes an extension that allows it to be attached to faces and planes.
The Part Part2DObject is an internal object, so it cannot be created from the graphical interface, only from the Python console as described in the Scripting section.
The Part::Part2DObject
is defined in the Part Workbench but can be used as the base class for scripted objects in all workbenches that produce 2D geometrical shapes. For example, it is the base object for sketches (Sketcher SketchObject), and for most objects created with the Draft Workbench.
Workbenches can add more properties to this basic element to produce an object with complex behavior.
See Property for all property types that scripted objects can have.
A Part Part2DObject (Part::Part2DObject
class) is derived from a Part Feature (Part::Feature
class), therefore it shares all the latter's properties.
In addition to the properties described in Part Feature, the Part Part2DObject has the following properties in the property editor. Hidden properties can be shown by using the Show all command in the context menu of the property editor.
{{TitleProperty|Attachment}}
- Map Mode|Enumeration: {{value|Deactivated}} by default. This property determines a plane which the object will use as reference for 2D geometry. Clicking on the ellipsis ... (three dots), to the right of the entry field opens the Part EditAttachment task panel that allows selecting the supporting plane by picking different elements in the 3D view. The different modes are: {{value|Deactivated}}, {{value|Translate origin}}, {{value|Object's XY}}, {{value|Object's XZ}}, {{value|Object's YZ}}, {{value|Plane face}}, {{value|Tangent to surface}}, {{value|Normal to edge}}, {{value|Frenet NB}}, {{value|Frenet TN}}, {{value|Frenet TB}}, {{value|Concentric}}, {{value|Revolution section}}, {{value|Plane by 3 points}}, {{value|Normal to 3 points}}, {{value|Folding}}, {{value|Inertia 2-3}}, {{value|Align O-N-X}}, {{value|Align O-N-Y}}, {{value|Align O-X-Y}}, {{value|Align O-X-N}}, {{value|Align O-Y-N}}, {{value|Align O-Y-X}}.
See Part EditAttachment for more information on all mapping modes.
The following two properties are normally hidden. They become visible once Map Mode is something other than {{value|Deactivated}}.
-
Map Reversed|Bool: it defaults to
False
; if it isTrue
the Z direction will be reversed. For example, a sketch will be flipped upside down. -
Attachment Offset|Placement: the position of the object in the 3D view, with respect to the attachment object's placement. The placement is defined by a
Base
point (vector), and aRotation
(axis and angle). See Placement.
Hidden properties Data
{{TitleProperty|Base}}
- Proxy|PythonObject: a custom class associated with this object. This only exists for the Python version. See Scripting.
{{TitleProperty|Attachment}}
-
Attacher Type|String: class name of the attach engine object driving the attachment. It defaults to
Attacher::AttachEnginePlane
. -
Support|LinkSubList: it is the plane or face supporting the 2D geometry. It defaults to an empty list
[]
. -
Map Path Parameter|Float: sets point of curve to map a sketch to. It goes from {{value|0}} to {{value|1}}, which corresponds to the {{value|start}} and {{value|end}}. It defaults to {{value|0}}.
{{TitleProperty|Grid}}
-
Grid Size|Length: the size of the spacing of the local grid lines in the 3D view; it defaults to {{value|10 mm}}.
-
Grid Snap|Bool: it defaults to
False
; ifTrue
the grid can be used to snap points. -
Grid Style|Enumeration: the style of the grid lines; {{value|Dashed}} (default) or {{value|Light}}.
-
Show Grid|Bool: it defaults to
False
; ifTrue
a grid local to the object will be displayed in the 3D view. This grid is independent of the Draft Grid. -
Tight Grid|Bool: if
True
(default) the local grid will be localized around the origin of the shape, otherwise it will extend itself more.
Hidden properties View
{{TitleProperty|Base}}
- Proxy|PythonObject: a custom view provider class associated with this object. This only exists for the Python version. See Scripting.
All other view properties, including hidden properties, are those of the base Part Feature object.
See also:
FreeCAD Scripting Basics, and scripted objects.
See Part Feature for the general information on adding objects to the document.
A Part2DObject is created with the
import FreeCAD as App
doc = App.newDocument()
obj = App.ActiveDocument.addObject("Part::Part2DObject", "Name")
obj.Label = "Custom label"
This basic Part::Part2DObject
doesn't have a Proxy object so it can't be fully used for sub-classing.
Therefore, for Python subclassing, you should create the Part::Part2DObjectPython
object.
import FreeCAD as App
doc = App.newDocument()
obj = App.ActiveDocument.addObject("Part::Part2DObjectPython", "Name")
obj.Label = "Custom label"
For example, most tools from the Draft Workbench, like Draft Line, Draft Rectangle, Draft Polygon, etc., are Part::Part2DObjectPython
objects with a custom icon and additional properties.
documentation index > Part > Part Part2DObject