|
Menu location |
---|
View → Standard views → FitAll |
Workbenches |
All |
Default shortcut |
None |
Introduced in version |
- |
See also |
Fit Selection |
Efectuarea unui zoom/se micșorează până când toate obiectele vizibile sunt afișate în vizualizarea 3D.
The Std ViewFitAll command zooms and pans the camera so that all visible objects fit inside the active 3D view.
Click pe sau alegeți View → Standard views →
Fit all din meniul de sus/top.
Comanda este de asemenea disponibilă în vizualizarea 3D (și nu are nimic pre-selectat).
See also: Autogenerated API documentation and FreeCAD Scripting Basics.
Use the fitAll
method of the View object to zoom to fit all.
import FreeCADGui
view = FreeCADGui.ActiveDocument.ActiveView
view.fitAll()
For the active view the SendMsgToActiveView
method of the FreeCADGui object can also be used.
import FreeCADGui
FreeCADGui.SendMsgToActiveView("ViewFit")