Draft Rotate/it: Difference between revisions

From FreeCAD Documentation
(Created page with "== Utilizzo ==")
(Created page with "# Selezionare gli oggetti che si desidera ruotare o copiare # Premere il pulsante {{KEY/it|Ruota}}, o premere i tasti {{KEY/it|R}} e {{KEY/it|O}} # Selezionare un primo punto,...")
Line 9: Line 9:
== Utilizzo ==
== Utilizzo ==


# Selezionare gli oggetti che si desidera ruotare o copiare
# Select objects you wish to rotate or copy
# Press the {{KEY|[[Image:Draft Rotate.png|16px]] [[Draft Rotate]]}} button, or press {{KEY|R}} then {{KEY|O}} keys
# Premere il pulsante {{KEY/it|Ruota}}, o premere i tasti {{KEY/it|R}} e {{KEY/it|O}}
# Click a center point on the 3D view, or type a [[Draft_Coordinates|coordinate]]
# Selezionare un primo punto, centro di rotazione, nella vista 3D, oppure digitare le sue [[Draft_Coordinates/it|coordinate ]]
# Selezionare il secondo punto nella vista 3D, o fornire un angolo di riferimento
# Click a second point on the 3D view, or give a reference angle
# Selezionare il terzo punto nella vista 3D, o fornire un angolo di rotazione
# Click a third point on the 3D view, or give a rotation angle


==Options==
==Options==

Revision as of 15:47, 13 February 2014

Ruota

Posizione nel menu
Draft → Ruota
Ambiente
Draft, Architettura
Avvio veloce
R O
Introdotto nella versione
-
Vedere anche
Nessuno

Descrizione

Questo strumento ruota o copia e ruota gli oggetti selezionati di un determinato angolo attorno a un punto del piano di lavoro corrente.

Utilizzo

  1. Selezionare gli oggetti che si desidera ruotare o copiare
  2. Premere il pulsante Template:KEY/it, o premere i tasti Template:KEY/it e Template:KEY/it
  3. Selezionare un primo punto, centro di rotazione, nella vista 3D, oppure digitare le sue coordinate
  4. Selezionare il secondo punto nella vista 3D, o fornire un angolo di riferimento
  5. Selezionare il terzo punto nella vista 3D, o fornire un angolo di rotazione

Options

  • Press X, Y or Z after a point to constrain the next point on the given axis.
  • To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
  • Press T or click the checkbox to check/uncheck the Continue button. If continue mode is on, the Rotate tool will restart after you finish or close it, allowing you to rotate or copy the objects another time without pressing the Rotate button again.
  • Pressing ALT or C or clicking the Copy button will make a copy of the objects, instead of rotating them. If you keep ALT pressed after clicking the third point, you will be able to place more copies, until you release the ALT key.
  • Press CTRL while drawing to force snapping your point to the nearest snap location, independently of the distance.
  • Press SHIFT while drawing to constrain your next point horizontally or vertically in relation to the rotation center.
  • Press ESC or the Cancel button to abort the current command.

Scripting

The Rotate tool can by used in macros and from the python console by using the following function:

 rotate (FreeCAD.Object or list, angle, [center], [axis] ,[copymode])
  • Rotates the given object or the objects contained in the given list with the given angle around the given center if provided, using axis as a rotation axis.
  • If axis is omitted, the rotation will be around the vertical Z axis.
  • If copymode is True, the actual objects are not moved, but copies are created instead.
  • Returns the objects (or their copies is copymode was True).

Example:

 import FreeCAD,Draft
 Draft.rotate(FreeCAD.ActiveDocument.ActiveObject,45)