Sketcher ConstrainAngle: Difference between revisions

From FreeCAD Documentation
mNo edit summary
(Complete rewrite, introducing two new modes)
Line 3: Line 3:
{{GuiCommand|Name=Constraint InternalAngle|Workbenches=[[Sketcher Workbench|Sketcher]], [[PartDesign Workbench|PartDesign]]|Shortcut=A|MenuLocation=Sketch → Sketcher constraints → Constrain angle|SeeAlso=[[Constraint Length|Constraint Length]], [[Constraint Perpendicular|Constraint Perpendicular]]}}
{{GuiCommand|Name=Constraint InternalAngle|Workbenches=[[Sketcher Workbench|Sketcher]], [[PartDesign Workbench|PartDesign]]|Shortcut=A|MenuLocation=Sketch → Sketcher constraints → Constrain angle|SeeAlso=[[Constraint Length|Constraint Length]], [[Constraint Perpendicular|Constraint Perpendicular]]}}


====Description==== <!--T:2-->
==Description==
Angle constraint is a [[Sketcher Datum Constraint|datum constraint]] intended to fix angles in sketch. It is capable of setting slopes of individual lines, angles between lines, angles of intersections of curves, and angle spans of circular arcs.
This tool constrains the angle between two selected lines in a sketch to be a specified value. By default, the internal angle, the smaller of the angles formed at the intersection of two lines (or their extensions) is constrained.<br />
If a single line is selected, the angle is constrained relative to the horizontal axis of the selected sketcher plane


==How to use==
====Operation==== <!--T:3-->
There are four different ways the constraint can be applied:
Select any two lines in the sketch by clicking on them in sequence. They will change colour to dark green when selected. The direction of the line form the first point created to the end point is significant in calculation of the angle between the lines.<br /><br />
# to individual lines
[[File:ConstrainAngle1.png|256px|<span title="Selected lines"></span>]]<br /><br />
# between lines
Then click on the ConstraintAngle icon([[Image:Constraint_InternalAngle.png|16px]]) in the Sketcher or Part Design toolbar or select the ConstrainAngle menu item from the Sketcher constraints sub menu of either the Sketcher (Sketcher workbench) or Part Design (Part Design workbench)menu item to add the constraint. <br /><br />
# to intersections of curves
The constraint is initially set to the current internal angle between the lines and the Constraint is added to the Tasks tab in the Combo View panel. <br /><br />
# to arcs of circles
[[File:ConstrainAngle2.png|256px|<span title="Constraint applied"></span>]]<br /><br />

Doubleclicking on the Constraint in the Tasks tab will bring up a pop-up dialog box in which this value may be edited to set it to a desired value. Alternatively, the datum text in the 3D view may be double clicked to bring up the pop-up dialog to set the value.<br /><br />
To apply angle constraint, one should the follow the steps:
[[File:ConstrainAngle3.png|256px|<span title="Editing value"></span>]]<br /><br />
* Select one, two or three entities in the sketch. The mode will be chosen depending on the selection.
[[File:ConstrainAngle4.png|256px|<span title="Constraint applied"></span>]]<br /><br />
* Invoke the constraint by clicking its icon on the toolbar, or selecting the menu item, or using keyboard shortcut. A datum edit dialog box pops up.
The value can be set to values greater than 180 (or even 360), in which case it becomes a constraint on the external angle and the angle is interpreted as modulo 360 degrees.<br /><br />
* Modify the angle if necessary. The angle can be entered as an expression that will be evaluated and the result will be stored. Click OK.
The absolute mode is invoked by only selecting one line before applying the constraint.<br /><br />

[[File:ConstrainAngle5.png|256px|<span title="Constraint applied"></span>]]<br /><br />
As with any datum constraint, it is possible to change the angle value later by double-clicking the constraint in constraint list or 3d view. Entering a negative value will cause the angle direction to flip.
Applying the constraint, the angle is constrained relative to the horizontal axis of the selected sketch plane.<br /><br />

[[File:ConstrainAngle6.png|256px|<span title="Constraint applied"></span>]]<br /><br />
==Constraint modes==
Selecting the second line which was drawn from the upper right to lower left.<br /><br />
===line slope angle===
[[File:ConstrainAngle7.png|256px|<span title="Constraint applied"></span>]]<br /><br />
'''Accepted selection:''' line
And applying the constraint as before,<br /><br />

[[File:ConstrainAngle8.png|256px|<span title="Constraint applied"></span>]]<br /><br />
[[Image:Sketcher ConsraintAngle mode1.png|600px]]
the line is now constrained to have a value relative to the direction of the horizontal axis in the clockwise direction (angle values are restricted to 180 degrees anticlockwise or clockwise).<br /><br />

As before by double clicking on the constraint in either the Tasks tab of the Combo view or on the constraint in the 3D view will allow editing of the value of the constrained angle.
The constraint sets the polar angle of line's direction. It is the angle between the line and X axis of the sketch.

===arc span (v0.15)===
'''Accepted selection:''' arc of circle

[[Image:Sketcher ConsraintAngle mode2.png|600px]]

In this mode, the constraint fixes angular span of a circular arc.

===between lines===
'''Accepted selection:''' line + line

[[Image:Sketcher ConsraintAngle mode3.png|600px]]

In this mode, the constraint sets the angle between two lines. It is not required that the lines intersect.

===between curves at intersection (angle-via-point) (v0.15)===
'''Accepted selection:''' any line/curve + any line/curve + any point

[[Image:Sketcher ConsraintAngle mode4.png|600px]]

In this mode, angle between two curves is constrained at the point of their intersection. The intersection point can be on curves' extensions. The point should be specified explicitly, since curves typically intersect in more than one point.

For the constraint to work correctly, the point must be on both curves. So, as the constraint is invoked, the point will be automatically constrained onto both curves ([[Sketcher helper constraint|helper constraints]] will be added, if necessary), and the angle between curves will be constrained at the point. These [[Sketcher helper constraint|helper constraints]] are plain regular constraints. They can be added manually, or deleted. There are no helper constraints on the example picture above, because the point selected is already the intersection of curves.

==Scripting==

Angle Constraint can be created from [[macros]] and from the python console by using the following:
</translate>
{{Code|code=
# line slope angle
Sketch.addConstraint(Sketcher.Constraint('Angle',iline,angle))

# angular span of arc
Sketch.addConstraint(Sketcher.Constraint('Angle',iarc,angle))

# angle between lines
Sketch.addConstraint(Sketcher.Constraint('Angle',iline1,pointpos1,iline2,pointpos2,angle))

# angle-via-point (no helper constraints are added automatically when from python)
Sketch.addConstraint(Sketcher.Constraint('AngleViaPoint',icurve1,icurve2,geoidpoint,pointpos,angle))
}}
<translate>
where:
:* <tt>Sketch</tt> is a sketch object
:* <tt>iline, iline1, iline2</tt> are integers specifying the lines by their ordinal numbers in <tt>Sketch</tt>.
:* <tt>pointpos1, pointpos2</tt> should be 1 for start point and 2 for end point. The choice of endpoints allows to set internal angle (or external), and it affects how the constraint is drawn on the screen.
:* <tt>geoidpoint</tt> and <tt>pointpos</tt> in AngleViaPoint are the indexes specifying the point of intersection.
:* <tt>angle</tt> is the angle value in radians. The angle is counted between tangent vectors in counterclockwise direction. Tangent vectors are pointing from start to end for the lines (or vice versa if ending point is supplied in angle between lines mode), and along counterclockwise direction for circles, arcs and ellipses. Quantity is also accepted as an angle (e.g. <tt>App.Units.Quantity('45 deg')</tt>)


</translate>
</translate>
{{clear}}
<languages/>
<languages/>

Revision as of 01:22, 18 January 2015

Constraint InternalAngle

Menu location
Sketch → Sketcher constraints → Constrain angle
Workbenches
Sketcher, PartDesign
Default shortcut
A
Introduced in version
-
See also
Constraint Length, Constraint Perpendicular

Description

Angle constraint is a datum constraint intended to fix angles in sketch. It is capable of setting slopes of individual lines, angles between lines, angles of intersections of curves, and angle spans of circular arcs.

How to use

There are four different ways the constraint can be applied:

  1. to individual lines
  2. between lines
  3. to intersections of curves
  4. to arcs of circles

To apply angle constraint, one should the follow the steps:

  • Select one, two or three entities in the sketch. The mode will be chosen depending on the selection.
  • Invoke the constraint by clicking its icon on the toolbar, or selecting the menu item, or using keyboard shortcut. A datum edit dialog box pops up.
  • Modify the angle if necessary. The angle can be entered as an expression that will be evaluated and the result will be stored. Click OK.

As with any datum constraint, it is possible to change the angle value later by double-clicking the constraint in constraint list or 3d view. Entering a negative value will cause the angle direction to flip.

Constraint modes

line slope angle

Accepted selection: line

The constraint sets the polar angle of line's direction. It is the angle between the line and X axis of the sketch.

arc span (v0.15)

Accepted selection: arc of circle

In this mode, the constraint fixes angular span of a circular arc.

between lines

Accepted selection: line + line

In this mode, the constraint sets the angle between two lines. It is not required that the lines intersect.

between curves at intersection (angle-via-point) (v0.15)

Accepted selection: any line/curve + any line/curve + any point

In this mode, angle between two curves is constrained at the point of their intersection. The intersection point can be on curves' extensions. The point should be specified explicitly, since curves typically intersect in more than one point.

For the constraint to work correctly, the point must be on both curves. So, as the constraint is invoked, the point will be automatically constrained onto both curves (helper constraints will be added, if necessary), and the angle between curves will be constrained at the point. These helper constraints are plain regular constraints. They can be added manually, or deleted. There are no helper constraints on the example picture above, because the point selected is already the intersection of curves.

Scripting

Angle Constraint can be created from macros and from the python console by using the following:

# line slope angle
Sketch.addConstraint(Sketcher.Constraint('Angle',iline,angle))

# angular span of arc
Sketch.addConstraint(Sketcher.Constraint('Angle',iarc,angle))

# angle between lines
Sketch.addConstraint(Sketcher.Constraint('Angle',iline1,pointpos1,iline2,pointpos2,angle))

# angle-via-point (no helper constraints are added automatically when from python)
Sketch.addConstraint(Sketcher.Constraint('AngleViaPoint',icurve1,icurve2,geoidpoint,pointpos,angle))

where:

  • Sketch is a sketch object
  • iline, iline1, iline2 are integers specifying the lines by their ordinal numbers in Sketch.
  • pointpos1, pointpos2 should be 1 for start point and 2 for end point. The choice of endpoints allows to set internal angle (or external), and it affects how the constraint is drawn on the screen.
  • geoidpoint and pointpos in AngleViaPoint are the indexes specifying the point of intersection.
  • angle is the angle value in radians. The angle is counted between tangent vectors in counterclockwise direction. Tangent vectors are pointing from start to end for the lines (or vice versa if ending point is supplied in angle between lines mode), and along counterclockwise direction for circles, arcs and ellipses. Quantity is also accepted as an angle (e.g. App.Units.Quantity('45 deg'))