Sketcher ConstrainDistanceY/ro: Difference between revisions

From FreeCAD Documentation
(Created page with "Sketcher Constrângere pe verticală")
 
(Updating to match new version of source page)
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>

{{Docnav
|[[Sketcher_ConstrainDistanceX|Horizontal distance]]
|[[Sketcher_ConstrainDistance|Distance]]
|[[Sketcher_Workbench|Sketcher]]
|IconL=Sketcher_ConstrainDistanceX.svg‎
|IconR=Sketcher_ConstrainDistance.svg
|IconC=Workbench_Sketcher.svg
}}

<div class="mw-translate-fuzzy">
{{GuiCommand
{{GuiCommand
|Name=Sketcher ConstrainDistanceY
|Name=Sketcher ConstrainDistanceY
Line 7: Line 18:
|SeeAlso=[[Sketcher_ConstrainDistanceX|Constrain Horizontal Distance]], [[Sketcher_ConstrainDistance|Constrain Length]]
|SeeAlso=[[Sketcher_ConstrainDistanceX|Constrain Horizontal Distance]], [[Sketcher_ConstrainDistance|Constrain Length]]
}}
}}
</div>

<span id="Description"></span>
<div class="mw-translate-fuzzy">
==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.
</div>


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


[[File:Sketcher ConstraintDistanceY example.png|none]]
[[File:Sketcher ConstraintDistanceY example.png]]

<span id="Usage"></span>
<div class="mw-translate-fuzzy">
==Utilizare==
# Selectați unul sau două puncte sau o linie.
# Apăsați butonul {{KEY|[[File:Sketcher ConstrainDistanceY.png|24px]] '''Constrain vertical distance'''}} .
# Un dialog contextual se deschide pentru a edita sau a confirma valoarea. Apăsați {{KEY|OK}} pentru a valida.
</div>


==Usage==
# Pick one or two points or one line.
# Pick one or two points or one line.
# Invoke the command several ways:
# Press the {{KEY|[[File:Sketcher ConstrainDistanceY.png|24px]] '''Constrain vertical distance'''}} button.
#* Press the {{Button|[[File:Sketcher_ConstrainDistanceY.svg|16px]] [[Sketcher_ConstrainDistanceY|Constrain vertical distance]]}} button.
# A pop up dialog opens to edit or confirm the value. Press {{KEY|OK}} to validate.
#* 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.
# A pop up dialog opens to edit or confirm the value. Press {{Button|OK}} to validate.


<div class="mw-translate-fuzzy">
'''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 {{KEY|ESC}} once to quit the command.
'''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 {{KEY|ESC}} o dată pentru a părăsi comanda.
</div>

== Scripting ==

Distance from origin:

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

Distance between two vertices:

{{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):

{{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|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
|[[Sketcher_ConstrainDistanceX|Horizontal distance]]
|[[Sketcher_ConstrainDistance|Distance]]
|[[Sketcher_Workbench|Sketcher]]
|IconL=Sketcher_ConstrainDistanceX.svg‎
|IconR=Sketcher_ConstrainDistance.svg
|IconC=Workbench_Sketcher.svg
}}


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

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.