Jump to content

Std: Mărire Vizualizare

From FreeCAD Documentation
This page is a translated version of the page Std ViewZoomIn and the translation is 6% complete.
Outdated translations are marked like this.

Std ViewZoomIn

Menu location
View → Zoom‏‎ → Zoom In
Workbenches
All
Default shortcut
Ctrl + +
Introduced in version
-
See also
Zoom Out, Zoom box

Description

Descriere

Face conținutul să apară mai mare în vizualizarea 3D.

Usage

Cum se folosește

  • Go to View → Zoom‏‎ → Zoom In or press Ctrl + +.
  • The view can also be zoomed in with the mouse scroll wheel.

Notes

Preferences

See also: Preferences Editor.

  • The zoom factor can be changed: Edit → Preferences → Display → Navigation → Zoom step. This setting also affects scroll wheel zoom.

Scripting

See also: Autogenerated API documentation and FreeCAD Scripting Basics.

Use the zoomIn method of the View object to zoom in. The zoomOut method is also available.

import FreeCADGui

view = FreeCADGui.ActiveDocument.ActiveView
view.zoomIn()