Sketcher ConstrainDistanceY/ro: 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 19: Line 20:
</div>
</div>


<span id="Description"></span>
<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
==Descriere==
==Descriere==
Line 28: Line 30:
[[File:Sketcher ConstraintDistanceY example.png]]
[[File:Sketcher ConstraintDistanceY example.png]]


<span id="Usage"></span>
<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
==Utilizare==
==Utilizare==
Line 38: Line 41:
# 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 50: Line 53:
Distance from origin:
Distance from origin:


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


Distance between two vertices:
Distance between two vertices:
Line 60: Line 63:
{{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')))}}


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




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


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

Revision as of 19:15, 4 April 2023

Sketcher ConstrainDistanceY

Menu location
Sketch → Sketcher constraints → Constrain vertical distance
Workbenches
Sketcher
Default shortcut
Shift+V
Introduced in version
-
See also
Constrain Horizontal Distance, Constrain Length

Descriere

Fixează distanța verticală între 2 puncte sau capetele liniei. Dacă este selectat un singur punct, distanța este setată la originea schiței.

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

Utilizare

  1. Selectați unul sau două puncte sau o linie.
  2. Apăsați butonul Constrain vertical distance .
  3. Un dialog contextual se deschide pentru a edita sau a confirma valoarea. Apăsați OK pentru a valida.
  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: instrumentul de constrângere poate fi pornit și fără o selecție prealabilă, dar va necesita selecția a două puncte ori a unei linii. Pentru a seta distanța de la origine, punctul de origine Sketch trebuie să fie selectat de asemenea. Implicit, comanda va fi în modul continuu pentru a crea noi constrângeri; apăsați butonul drept al mouse-ului sau ESC o dată pentru a părăsi comanda.

Scripting

Distance from origin:

Sketch.addConstraint(Sketcher.Constraint('DistanceY', Edge, PointOfEdge, -1, 1, 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 Edge, Edge1, Edge2, PointOfEdge, PointOfEdge1, PointOfEdge2 and Line, and contains further examples on how to create constraints from Python scripts.