Sketcher ConstrainDistance/sv: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(22 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{GuiCommand/sv|Name=Constraint Length|Name/sv=Constraint Length|Workbenches=[[Sketcher Workbench/sv|Sketcher]], [[PartDesign Workbench/sv|PartDesign]]|MenuLocation=Sketch → Sketcher constraints → Constrain distance|SeeAlso=[[Constraint HorizontalDistance/sv|Constraint HorizontalDistance]], [[Constraint VerticalDistance/sv|Constraint VerticalDistance]]}}


{{Docnav
====Description====
|[[Sketcher_ConstrainDistanceY|Vertical distance]]
Constraint Length constrains the length of a line, the perpendicular distance between a point and a line or the distance between two points to have a specified value.
|[[Sketcher_ConstrainRadius|Radius]]
|[[Sketcher_Workbench|Sketcher]]
|IconL=Sketcher_ConstrainDistanceY.svg
|IconR=Sketcher_ConstrainRadius.svg
|IconC=Workbench_Sketcher.svg
}}


<div class="mw-translate-fuzzy">
====Hint====
{{GuiCommand/sv
If applicable please consider using the [[Constraint_HorizontalDistance|Horizontal Distance]] or [[Constraint_VerticalDistance|Vertical Distance]] constraints instead. These constraints are more robust and faster to calculate than the here documented length constraint.
|Name=Constraint Length
|Name/sv=Constraint Length
|Workbenches=[[Sketcher Workbench/sv|Sketcher]]
|MenuLocation=Sketch → Sketcher constraints → Constrain distance
|Shortcut=Shift + D
|SeeAlso=[[Sketcher ConstrainDistanceX/sv|Constraint HorizontalDistance]], [[Sketcher ConstrainDistanceY/sv|Constraint VerticalDistance]]
}}
</div>


====Operation====
==Description==
Select a line in the sketch,<br />
[[File:LengthConstraint1.png|256px]]<br />
by clicking on the line (it turns dark green).<br />
[[File:LengthConstraint2.png|256px]]<br />
Apply the Length Constraint by selecting the icon [[File:Constraint_Length.png|16px]] from the Sketcher Constraints toolbar or selecting the Constrain distance menu item from the Sketcher Constraints sub-menu of the Sketcher menu item in the Sketcher workbench (or Part Design in the Part Design workbench).<br />
[[File:LengthConstraint3.png|256px]]<br />
The length of the line is constrained to its current value.Double clicking on the constraint in the 3D view or in the Tasks tab of the Combo View will bring up a dialog box to allow the constraint value to be edited.<br />
[[File:LengthConstraint4.png|256px]]<br />
Enter the required value and click OK to set the constraint length.<br />
[[File:LengthConstraint5.png|256px]]<br />
The Length Constraint also constrains the distance between a line and a point.<br />
[[File:LengthConstraint6.png|256px]]<br />
Select the line and a point in the sketch,<br />
[[File:LengthConstraint7.png|256px]]<br />
then apply the constraint as before.<br />
The perpendicular distance between the point and the line is constrained to its current value. this may be edited as described above to set the constraint to a desired value.<br />
[[File:LengthConstraint8.png|256px]]<br />
The constraint may also be applied to two points, selected here at either end of a poly-line.<br />
[[File:LengthConstraint9.png|256px]]<br />
Applying the constraint as before, the distance between the two selected points is constrained. As described above it may be edited to set a desired value.<br />
[[File:LengthConstraint10.png|256px]]<br />


'''Constrain distance''' defines the length of a line, the perpendicular distance between a point and a line, the distance between two points, or, {{Version|0.21}}, the distance between the edges of two circles or between the edge of a circle and a line.
{{clear}}

[[Image:Sketcher_ConstrainDistance_example.png]]

==Usage==

# Pick one line, or one point and one line, or two points, or the edges of two circles, or the edge of one circle and one line.
# There are several ways to invoke the command:
#* Press the {{Button|[[File:Sketcher_ConstrainDistance.svg|16px]] [[Sketcher_ConstrainDistance|Constrain distance]]}} button in the Sketcher toolbar.
#* Use the {{KEY|K}} then {{KEY|D}} keyboard shortcut.
#* Use the {{MenuCommand|Sketch → Sketcher constraints → [[File:Sketcher_ConstrainDistance.svg|16px]] Constrain distance}} entry from the top menu.
# A pop up dialog opens to edit or confirm the value. Press {{Button|OK}} to validate.

'''Note:''' the constraint tool can also be started with no prior selection (apart from circle to circle and circle to line cases). To set the perpendicular distance between a point and a line, the point needs to be selected first. By default the command will be in continue mode to create new constraints; press the right mouse button or {{KEY|Esc}} once to quit the command.

===Hint===

If applicable please consider using the {{Button|[[File:Sketcher_ConstrainDistanceX.svg|16px]] [[Sketcher_ConstrainDistanceX|Horizontal distance]]}} or {{Button|[[File:Sketcher_ConstrainDistanceY.svg|16px]] [[Sketcher_ConstrainDistanceY|Vertical distance]]}} constraints instead. These constraints are more robust and faster to calculate than the '''ConstrainDistance''' tool.

== Scripting ==

Distance from origin:

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Distance', Edge, PointOfEdge, -1, 1, App.Units.Quantity('123.0 mm')))}}

Distance between two vertices:

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Distance', Edge1, PointOfEdge1, Edge2, PointOfEdge2, App.Units.Quantity('123.0 mm')))}}

Length of line (the GUI allows selecting the edge itself, but it is just a shorthand for using the two extremities of the same line):

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Distance', Line, 1, Line, 2, App.Units.Quantity('123.0 mm')))}}

Distance from point ({{incode|Edge, PointOfEdge}}) to perpendicular point on line ({{incode|Line}}):

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Distance', Edge, PointOfEdge, Line, 0, App.Units.Quantity('123.0 mm')))}}

Distance between the edges of two circles:

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Distance', Circle1, 0, Circle2, 0, App.Units.Quantity('123.0 mm')))}}

The [[Sketcher_scripting|Sketcher scripting]] page explains the values which can be used for {{incode|Edge}}, {{incode|Edge1}}, {{incode|Edge2}}, {{incode|PointOfEdge}}, {{incode|PointOfEdge1}}, {{incode|PointOfEdge2}}, {{incode|Line}}, {{incode|Circle1}} and {{incode|Circle2}}, and contains further examples on how to create constraints from Python scripts.


{{Docnav
|[[Sketcher_ConstrainDistanceY|Vertical distance]]
|[[Sketcher_ConstrainRadius|Radius]]
|[[Sketcher_Workbench|Sketcher]]
|IconL=Sketcher_ConstrainDistanceY.svg
|IconR=Sketcher_ConstrainRadius.svg
|IconC=Workbench_Sketcher.svg
}}

{{Sketcher_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Revision as of 16:42, 2 January 2024

Constraint Length

Menyplacering
Sketch → Sketcher constraints → Constrain distance
Arbetsbänkar
Sketcher
Standard genväg
Shift + D
Introducerad i version
-
Se även
Constraint HorizontalDistance, Constraint VerticalDistance

Description

Constrain distance defines the length of a line, the perpendicular distance between a point and a line, the distance between two points, or, introduced in version 0.21, the distance between the edges of two circles or between the edge of a circle and a line.

Usage

  1. Pick one line, or one point and one line, or two points, or the edges of two circles, or the edge of one circle and one line.
  2. There are several ways to invoke the command:
    • Press the Constrain distance button in the Sketcher toolbar.
    • Use the K then D keyboard shortcut.
    • Use the Sketch → Sketcher constraints → Constrain distance entry from the top menu.
  3. A pop up dialog opens to edit or confirm the value. Press OK to validate.

Note: the constraint tool can also be started with no prior selection (apart from circle to circle and circle to line cases). To set the perpendicular distance between a point and a line, the point needs to be selected first. By default the command will be in continue mode to create new constraints; press the right mouse button or Esc once to quit the command.

Hint

If applicable please consider using the Horizontal distance or Vertical distance constraints instead. These constraints are more robust and faster to calculate than the ConstrainDistance tool.

Scripting

Distance from origin:

Sketch.addConstraint(Sketcher.Constraint('Distance', Edge, PointOfEdge, -1, 1, App.Units.Quantity('123.0 mm')))

Distance between two vertices:

Sketch.addConstraint(Sketcher.Constraint('Distance', Edge1, PointOfEdge1, Edge2, PointOfEdge2, App.Units.Quantity('123.0 mm')))

Length of line (the GUI allows selecting the edge itself, but it is just a shorthand for using the two extremities of the same line):

Sketch.addConstraint(Sketcher.Constraint('Distance', Line, 1, Line, 2, App.Units.Quantity('123.0 mm')))

Distance from point (Edge, PointOfEdge) to perpendicular point on line (Line):

Sketch.addConstraint(Sketcher.Constraint('Distance', Edge, PointOfEdge, Line, 0, App.Units.Quantity('123.0 mm')))

Distance between the edges of two circles:

Sketch.addConstraint(Sketcher.Constraint('Distance', Circle1, 0, Circle2, 0, App.Units.Quantity('123.0 mm')))

The Sketcher scripting page explains the values which can be used for Edge, Edge1, Edge2, PointOfEdge, PointOfEdge1, PointOfEdge2, Line, Circle1 and Circle2, and contains further examples on how to create constraints from Python scripts.