Sketcher ConstrainDistanceY/cs: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
{{Docnav
|[[Sketcher_ConstrainDistanceX|Horizontal Distance]]
|[[Sketcher_ConstrainDistanceX|Horizontal distance]]
|[[Sketcher_ConstrainDistance|Distance]]
|[[Sketcher_ConstrainDistance|Distance]]
|[[Sketcher_Workbench|Sketcher]]
|[[Sketcher_Workbench|Sketcher]]
Line 39: Line 40:
# Invoke the command several ways:
# Invoke the command several ways:
#* Press the {{Button|[[File:Sketcher_ConstrainDistanceY.svg|16px]] [[Sketcher_ConstrainDistanceY|Constrain vertical distance]]}} button.
#* Press the {{Button|[[File:Sketcher_ConstrainDistanceY.svg|16px]] [[Sketcher_ConstrainDistanceY|Constrain vertical distance]]}} button.
#* Use the {{KEY|Shift}} + {{KEY|V}} keyboard shortcut. ('''V''' is for '''V'''ertical)
#* Use the {{KEY|I}} keyboard shortcut.
#* Use the {{MenuCommand|Sketch → Sketcher constraints → [[File:Sketcher_ConstrainDistanceY.svg|16px]] Constrain vertical distance}} entry from the top menu.
#* Use the {{MenuCommand|Sketch → Sketcher constraints → [[File:Sketcher_ConstrainDistanceY.svg|16px]] Constrain vertical distance}} entry from the top menu.
# A pop up dialog opens to edit or confirm the value. Press {{Button|OK}} to validate.
# A pop up dialog opens to edit or confirm the value. Press {{Button|OK}} to validate.
Line 55: Line 56:
{{Code|code=Sketch.addConstraint(Sketcher.Constraint('DistanceY', Edge1, PointOfEdge1, Edge2, PointOfEdge2, App.Units.Quantity('123.0 mm')))}}
{{Code|code=Sketch.addConstraint(Sketcher.Constraint('DistanceY', Edge1, PointOfEdge1, Edge2, PointOfEdge2, App.Units.Quantity('123.0 mm')))}}


Vertical span of line (the GUI allows selecting the edge itself, but it is just a shorthand for using the two extremities of the same line:
Vertical span 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('DistanceY', Line, 1, Line, 2, App.Units.Quantity('123.0 mm')))}}
{{Code|code=Sketch.addConstraint(Sketcher.Constraint('DistanceY', Line, 1, Line, 2, App.Units.Quantity('123.0 mm')))}}
Line 63: Line 64:


{{Docnav
{{Docnav
|[[Sketcher_ConstrainDistanceX|Horizontal Distance]]
|[[Sketcher_ConstrainDistanceX|Horizontal distance]]
|[[Sketcher_ConstrainDistance|Distance]]
|[[Sketcher_ConstrainDistance|Distance]]
|[[Sketcher_Workbench|Sketcher]]
|[[Sketcher_Workbench|Sketcher]]
Line 71: Line 72:
}}
}}


{{Sketcher Tools navi{{#translation:}}}}
{{Sketcher_Tools_navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
{{clear}}

Revision as of 20:30, 20 March 2022

Sketcher ConstrainDistanceY

Umístění Menu
Sketch → Sketcher geometries → Constrain vertical distance
Pracovní stoly
Náčrt
Výchozí zástupce
Shift+V
Představen ve verzi
-
Viz také
Vazba vodorovné vzdálenosti, Vazba délky

Popis

Zafixuje svislou vzdálenost mezi 2 body nebo konci přímek. Je-li vybrána pouze jedna položka, bude vzdálenost nastavena na původní hodnotu.

Fixes the vertical distance between 2 points or line ends. If only one point is selected, the distance is set to the sketch origin.

Použití

  1. Vyberte jeden nebo dva body
  2. Aktivujte vazbu
  1. Pick one or two points or one line.
  2. Invoke the command several ways:
    • Press the Constrain vertical distance button.
    • Use the I keyboard shortcut.
    • Use the Sketch → Sketcher constraints → Constrain vertical 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, but will require selection of two points or one line. To set the distance to the origin, the sketch origin point needs to be selected as well. 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.

Scripting

Distance from origin:

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

Distance between two vertices:

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

Vertical span 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('DistanceY', Line, 1, Line, 2, App.Units.Quantity('123.0 mm')))

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