Std ViewFitAll/de: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 2: Line 2:


{{Docnav
{{Docnav
|[[Std_MainFullscreen|Std MainFullscreen]]
|[[Std_MainFullscreen|MainFullscreen]]
|[[Std_ViewFitSelection|Std ViewFitSelection]]
|[[Std_ViewFitSelection|ViewFitSelection]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_MainFullscreen.svg
|IconL=Std_MainFullscreen.svg
Line 68: Line 68:


{{Docnav
{{Docnav
|[[Std_MainFullscreen|Std MainFullscreen]]
|[[Std_MainFullscreen|MainFullscreen]]
|[[Std_ViewFitSelection|Std ViewFitSelection]]
|[[Std_ViewFitSelection|ViewFitSelection]]
|[[Std_View_Menu|Std View Menu]]
|[[Std_View_Menu|Std View Menu]]
|IconL=Std_MainFullscreen.svg
|IconL=Std_MainFullscreen.svg

Revision as of 18:52, 30 December 2020

Std AnsichtEinpassenAlles

Menüeintrag
Template:StdMenu/de → Standardansichten‏‎ → EinpassenAlles
Arbeitsbereich
Alle
Standardtastenkürzel
V F
Eingeführt in Version
-
Siehe auch
Einpassen Auswahl

Beschreibung

Der EinpassenAlles Befehl zoomt heraus, bis alle sichtbaren Objekte im aktiven Dokument in der 3D Ansicht angezeigt werden.

The Std ViewFitAll command zooms and pans the camera so that all visible objects fit inside the active 3D view.

Anwendung==

  1. Es gibt mehrere Wege, den ViewFitAll Befehl aufzurufen:
    • Klicke auf die Taste in der Werkzeugleiste.
    • Verwende die Tastaturkürzel V und F
    • Verwende denTemplate:MenuCommand/de Eintrag aus dem oberen Menü

Hinweis: Der Befehl ist auch durch Rechtsklick in der 3D Ansicht verfügbar (wenn nichts vorgewählt wurde).

  1. There are several ways to invoke the command:
    • Press the Std ViewFitAll button.
    • Select the View → Standard views → Fit all option from the menu.
    • Select the Fit all option from the 3D view context menu.
    • Use the keyboard shortcut: V then F.

Notes

  • It is also possible to zoom to a 'fit all' via the Mini-cube menu of the Navigation Cube.

Scripting

See also: FreeCAD Scripting Basics.

To change the view to 'fit all' use the fitAll method of the ActiveView object. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.ActiveDocument.ActiveView.fitAll()

Alternatively the SendMsgToActiveView method of the FreeCADGui object can be used. This method is not available if FreeCAD is in console mode.

import FreeCADGui

FreeCADGui.SendMsgToActiveView('ViewFit')