Команда "Обновить"

From FreeCAD Documentation
Revision as of 11:33, 28 December 2019 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Std_Refresh

Системное название
Std_Refresh
Расположение в меню
Правка → Обновить
Верстаки
All
Быстрые клавиши
F5 or Ctrl+R
Представлено в версии
-
См. также
...


Description

When used, this command recomputes all altered components on the screen and refreshes the display.

How to use

Press F5 or Ctrl+R or click on the icon Refresh.

Limitations

FreeCAD will only allow Refresh when (according to the program's opinion) an alteration of a component happened. Then the grayed-out Refresh-Icon will become blue. To force a manual recompute you could use the macro Force Recompute

Scripting

See also: FreeCAD Scripting Basics.

Recomputing the model can be done in macros and from the Python console by using the recompute method of the currently active document.

import FreeCAD as App

doc = App.newDocument()
doc.recompute()
# App.ActiveDocument.recompute()