Draft WorkingPlaneProxy/it: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/it|Name=Draft SetWorkingPlaneProxy|Name/it=Piano proxy|Workbenches=Draft, Arch|MenuLocation=Draft → Utilità → Piano pr...")
(Created page with "==Descrizione== Questo comando posiziona un oggetto proxy nel documento, posizionato e allineato al corrente Piano di lavoro. Quando si utilizza il co...")
Line 2: Line 2:
{{GuiCommand/it|Name=Draft SetWorkingPlaneProxy|Name/it=Piano proxy|Workbenches=[[Draft Module/it|Draft]], [[Arch Module/it|Arch]]|MenuLocation=Draft → Utilità → Piano proxy|SeeAlso=[[Draft SelectPlane/it|Piano di lavoro]]}}
{{GuiCommand/it|Name=Draft SetWorkingPlaneProxy|Name/it=Piano proxy|Workbenches=[[Draft Module/it|Draft]], [[Arch Module/it|Arch]]|MenuLocation=Draft → Utilità → Piano proxy|SeeAlso=[[Draft SelectPlane/it|Piano di lavoro]]}}


==Description==
==Descrizione==
This command will place a Proxy object in the document, placed and aligned to the current [[Draft SelectPlane|Working Plane]]. When using the [[Draft SelectPlane]] command with such a Proxy object selected, the working plane will be positioned and aligned back with the proxy object.
Questo comando posiziona un oggetto proxy nel documento, posizionato e allineato al corrente [[Draft SelectPlane/it|Piano di lavoro]]. Quando si utilizza il comando [[Draft SelectPlane/it|Piano di lavoro]] con un tale oggetto proxy selezionato, il piano di lavoro viene posizionato e allineato con l'oggetto proxy.


==How to use==
==How to use==

Revision as of 21:43, 27 February 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.

How to use

  1. Make sure the Working Plane is set as you want.
  2. Press Draft -> Utilities -> File:Draft SetWorkingPlaneProxy.png Create WP Proxy

Options

  • WP proxies can be manipulated (moved and rotated) like any other FreeCAD object
  • The size and appearance of the proxy object can be set in the View properties

Scripting

Working plane proxy objects can easily be created in scripts and macros:

Example:

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