8 .. |SketchButton.icon| image:: images/SketchButton.png
10 Sketch plug-in includes features for creation of 2D shapes.
12 The sketch creation takes the following steps:
14 - definition of sketch plane;
15 - creation of sketch objects from scratch;
16 - generation of sketch objects via operations on the existing operations;
17 - definition of constraints.
19 Sketch can be created in the active part or in a partset (if there is no active part).
23 #. select in the Main Menu *Sketch - > Sketch* item or
24 #. click |SketchButton.icon| **Sketch** button in Sketch toolbar:
26 First define a plane for the sketch:
28 .. figure:: images/PlaneDefinition.png
31 - specify plane size (equal to 25 in the example above);
32 - select the appropriate plane in the viewer.
34 Note that coordinate planes will be suggested for selection if no convenient objects for plane selection are displayed in the viewer:
36 .. figure:: images/CoordinatePlanes.png
39 After the plane for sketch is selected, the following property panel will be opened:
41 .. figure:: images/SketchPanel.png
46 - **Reversed** check box - allows reversing the sketch plane normal;
47 - **Set plane view** button - switches the viewer to the top view for the sketch plane;
48 - **Show geometrical constraints** check box - displays/hides geometrical constraints:
49 - **Show dimensional constraints** check box - displays/hides dimensional constraints;
50 - **Show existing expressions** check box - displays/hides expressions.
51 - **Show free points** check box - highlights free points in the current sketch if it is checked.
52 - **Automatic constraints** - automatically create horizontal or vertical constraints if angle between created line and horizontal or vertical less then angular tolerance (defined in preferences).
53 - **Change sketch plane** button - allows to change working plane of the current sketch.
54 - **Show remaining DoFs** button - highlights all sketch edges which are not fully constrained.
56 Now it is possible to:
58 - create :ref:`sketch objects <sketch_objects>`
59 - create :ref:`constraints <sketch_constraints>`
60 - perform :ref:`sketch operations <sketch_operations>`
62 To apply or cancel sketch creation use Apply and Cancel buttons from the
63 Sketch panel as well as equivalent buttons from Sketch toolbar.
65 The Result of operation will be a COMPOUND. In the object tree, Result node is located in
66 **Constructions** folder.
68 The Name is assigned automatically: **Sketch_1**, **Sketch_2**, ... both for Feature and Result.
72 .. py:function:: model.addSketch(PartOrPartSet, plane)
74 :param part: The current part object.
75 :param object: A plane.
76 :return: Result object.
83 The plug-in includes the following features for creation of 2D objects:
96 curveFittingFeature.rst
98 .. _sketch_constraints:
103 Constraints are available and viewable during sketch creation or editing.
105 The goal of constraints creation is to fix sketch geometry, i.e. set degrees of freedom to zero.
107 If all degrees of freedom are eliminated, the sketch is fixed and displayed with green color.
109 .. figure:: images/Sketch_fixed.png
114 If any degrees of freedom remain unsolved, the sketch is under-constrained and displayed with red color.
116 .. figure:: images/Sketch_underconstrained.png
119 Underconstrained Sketch
121 The plug-in includes the following constraints:
127 horizontalDistFeature.rst
128 verticalDistFeature.rst
132 horizontalFeature.rst
136 perpendicularFeature.rst
138 coincedentFeature.rst
143 .. _sketch_operations:
148 Sketcher comes into overconstrained state when an extra constraint was defined. The following picture shows an example of the overconstrained state:
150 .. figure:: images/Overconstrained.png
153 Overconstrained Sketch
155 When Sketcher gets this state then:
157 - buttons Apply and Cancel for the whole Sketcher are blocked;
158 - a constraint which causes the overconstraint state is highlightid by red color;
159 - a warning message in sketcher Property Panel is shown with recomendation what to do in this case;
160 - an additional Undo button is shown under the warning messages;
162 After undoing the last operation or deletion of a conflicting constraint Sketcher will be reverted into a normal state.
166 Operations modify existing features of the sketch or create new ones by copying them.
168 The plug-in includes the following operations:
176 projectionFeature.rst
177 intersectionFeature.rst
179 translationFeature.rst