Sketcher ConstrainParallel/it: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 11: Line 11:
<span id="Description"></span>
<span id="Description"></span>
==Descrizione==
==Descrizione==

Il vincolo Parallela costringe due linee rette o due bordi selezionati a essere paralleli tra loro.

<span id="Operation"></span>
==Utilizzo==

Il disegno contiene due linee orientate in modo casuale.


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Il vincolo Parallela costringe due linee rette o due bordi selezionati a essere paralleli tra loro.
[[Image:ConstrainParallel1.png|256px]]
</div>
</div>


==Usage==
<div class="mw-translate-fuzzy">
Selezionare entrambe le linee facendo clic in successione su ciascuna di esse.
</div>


# Optionally select two or more lines.
<div class="mw-translate-fuzzy">
# There are several ways to invoke the command:
[[File:ConstrainParallel2.png|256px]]
#* Press the {{Button|[[Image:Sketcher_ConstrainParallel.svg|16px]] [[Sketcher_ConstrainParallel|Constrain parallel]]}} button.
</div>
#* Select the {{MenuCommand|Sketch → Sketcher constraints → [[Image:Sketcher_ConstrainParallel.svg|16px]] Constrain parallel}} option from the menu.

#* Use the keyboard shortcut: {{KEY|P}}.
<div class="mw-translate-fuzzy">
# To indicate that the command has been activated the cursor changes to a white cross with the command icon.
Applicare il vincolo Parallela in uno di questi modi:
# Optionally keep selecting elements. You can only select two lines at a time now.
* Cliccare sull'icona [[Image:Constraint_Parallel.png|16px]] nella barra degli strumenti dei vincoli di Sketcher
# To finish the command press {{KEY|Esc}} or the right mouse button, or start a another constraints or geometries command.
* Usare la scorciatoia da tastiera {{KEY|Shift}} + {{KEY|P}}.
* Usare la voce {{MenuCommand|Sketch → Vincoli → Parallela}} dal menu principale.
</div>

<div class="mw-translate-fuzzy">
[[Image:ConstrainParallel3.png|256px]]
</div>

<div class="mw-translate-fuzzy">
'''Risultato.''' Le linee selezionate sono forzate ad essere parallele tra di loro.
Ora, modificando l'orientamento di una linea si cambia anche l'orientamento dell'altra allo stesso modo.
</div>


== Scripting ==
== Scripting ==

Revision as of 09:26, 20 January 2024

Parallela

Posizione nel menu
PartDesign → Schizzo → Parallela
Ambiente
Schizzo
Avvio veloce
Shift + P
Introdotto nella versione
-
Vedere anche
Verticale, Orizzontale

Descrizione

Il vincolo Parallela costringe due linee rette o due bordi selezionati a essere paralleli tra loro.

Usage

  1. Optionally select two or more lines.
  2. There are several ways to invoke the command:
    • Press the Constrain parallel button.
    • Select the Sketch → Sketcher constraints → Constrain parallel option from the menu.
    • Use the keyboard shortcut: P.
  3. To indicate that the command has been activated the cursor changes to a white cross with the command icon.
  4. Optionally keep selecting elements. You can only select two lines at a time now.
  5. To finish the command press Esc or the right mouse button, or start a another constraints or geometries command.

Scripting

Sketch.addConstraint(Sketcher.Constraint('Parallel', Line1, Line2))

The Sketcher scripting page explains the values which can be used for Line1 and Line2 and contains further examples on how to create constraints from Python scripts.