Draft WorkingPlaneProxy/it: Difference between revisions

From FreeCAD Documentation
(Created page with "Esempio:")
No edit summary
Line 12: Line 12:
* Il piano proxy può essere manipolato (spostato e ruotato) come qualsiasi altro oggetto di FreeCAD
* Il piano proxy può essere manipolato (spostato e ruotato) come qualsiasi altro oggetto di FreeCAD
* Le dimensioni e l'aspetto dell'oggetto proxy possono essere impostate nella finestra delle proprietà
* Le dimensioni e l'aspetto dell'oggetto proxy possono essere impostate nella finestra delle proprietà

==Properties==

* {{PropertyData|Placement}}: Stores the position of this Proxy and the corresponding Working Plane
* {{PropertyView|Display Size}}: The size of the Proxy object in the 3D view
* {{PropertyView|Arrow Size}}: The size of the arrows on the 3 axes
* {{PropertyView|Restore View}}: If true, the camera position will be restored on activating (by double-click or [[Draft SelectPlane]]) this object
* {{PropertyView|Restore State}}: If true, the visibility state of all objects in the current document will be restored on activating (by double-click or [[Draft SelectPlane]]) this object


==Script==
==Script==

Revision as of 21:44, 13 July 2017

Piano proxy

Posizione nel menu
Draft → Utilità → Piano proxy
Ambiente
Draft, Arch
Avvio veloce
Nessuno
Introdotto nella versione
-
Vedere anche
Piano di lavoro

Descrizione

Questo comando posiziona un oggetto proxy nel documento, posizionato e allineato al corrente Piano di lavoro. Quando si utilizza il comando Piano di lavoro con un tale oggetto proxy selezionato, il piano di lavoro viene posizionato e allineato con l'oggetto proxy.

Uso

  1. Assicurarsi che il Piano di lavoro sia impostato come si desidera.
  2. Premere Draft -> Utilità -> File:Draft SetWorkingPlaneProxy.png Piano proxy

Opzioni

  • Il piano proxy può essere manipolato (spostato e ruotato) come qualsiasi altro oggetto di FreeCAD
  • Le dimensioni e l'aspetto dell'oggetto proxy possono essere impostate nella finestra delle proprietà

Properties

  • DatiPlacement: Stores the position of this Proxy and the corresponding Working Plane
  • VistaDisplay Size: The size of the Proxy object in the 3D view
  • VistaArrow Size: The size of the arrows on the 3 axes
  • VistaRestore View: If true, the camera position will be restored on activating (by double-click or Draft SelectPlane) this object
  • VistaRestore State: If true, the visibility state of all objects in the current document will be restored on activating (by double-click or Draft SelectPlane) this object

Script

Gli oggetti piano di lavoro proxy possono essere creati facilmente in script e macro:

Esempio:

import FreeCAD,Draft
currentWP = FreeCAD.DraftWorkingPlane
Draft.makeWorkingPlaneProxy(currentWP.getPlacement())