Std StoreWorkingView/it: Difference between revisions

From FreeCAD Documentation
(Created page with "==Descrizione==")
(Created page with "Il comando '''Memorizza vista di lavoro''' memorizza le impostazioni della telecamera della Vista 3D attiva nella sua vista di lavoro temporanea. Questa vista può essere richiamata con il comando Richiama vista di lavoro.")
Line 23: Line 23:
==Descrizione==
==Descrizione==


The '''Std StoreWorkingView''' command stores the camera settings of the active [[3D_view|3D view]] in its temporary working view. This view can be recalled with the [[Std_RecallWorkingView|Std RecallWorkingView]] command.
Il comando '''Memorizza vista di lavoro''' memorizza le impostazioni della telecamera della [[3D_view/it|Vista 3D]] attiva nella sua vista di lavoro temporanea. Questa vista può essere richiamata con il comando [[Std_RecallWorkingView/it|Richiama vista di lavoro]].


Each 3D view has its own working view. Storing a new working view will overwrite the existing working view of the active 3D view. When a 3D view is closed its working view is lost.
Each 3D view has its own working view. Storing a new working view will overwrite the existing working view of the active 3D view. When a 3D view is closed its working view is lost.

Revision as of 20:26, 3 February 2023

Other languages:

Memorizza vista di lavoro

Posizione nel menu
Visualizza→ Viste standard → Memorizza vista di lavoro
Ambiente
Tutte
Avvio veloce
Shift+End
Introdotto nella versione
1.0
Vedere anche
Richiama vista di lavoro, Viste bloccate

Descrizione

Il comando Memorizza vista di lavoro memorizza le impostazioni della telecamera della Vista 3D attiva nella sua vista di lavoro temporanea. Questa vista può essere richiamata con il comando Richiama vista di lavoro.

Each 3D view has its own working view. Storing a new working view will overwrite the existing working view of the active 3D view. When a 3D view is closed its working view is lost.

Usage

  1. Make sure a 3D view is active.
  2. There are several ways to invoke the command:
    • Select the View → Standard views → Store working view option from the menu.
    • Use the keyboard shortcut: Shift+End.

Scripting

See also: FreeCAD Scripting Basics.

To store the current camera settings of the active 3D view in a working view:

import FreeCADGui

FreeCADGui.runCommand("Std_StoreWorkingView", 0)