Std Aktualisieren

From FreeCAD Documentation
Revision as of 18:50, 17 April 2020 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Std Refresh

Menu location
Bearbeiten → Aktualisieren
Workbenches
All
Default shortcut
F5 or Ctrl+R
Introduced in version
-
See also
None

Beschreibung

Wenn verwendet, berechnet dieser Befehl alle geänderten Komponenten auf dem Bildschirm neu und aktualisiert die Anzeige .

The Std Refresh command recomputes the active document. The command is disabled if the document does not require a recompute.

Anwendung

Drücke F5 oder Ctrl+R oder klicke auf das Symbol Refresh.

Options

  • To force a recompute select the document or one or more objects in the Tree view, choose the Mark to recompute option from the context menu, and invoke the command.
  • For objects, but not for documents, you can also choose Recompute object from the same context menu (introduced in version 0.19).

Notes

Limitations

  • When using the Spreadsheet Workbench, when updating a spreadsheet it auto-triggers a recompute. The longer this recompute takes the longer the lag will be. One can elect to 'skip recomputes' (by right-clicking document name in the tree view) in cases where multiple changes are necessary to be made to the spreadsheet, and then re-enabled afterwards to reduce the number of recomputes required.

Skripten

Die Neuberechnung des Modells kann in der Makros und von der Python Konsole aus mit Hilfe der recompute Methode des aktuell aktiven Dokuments durchgeführt werden.

import FreeCAD

doc = FreeCAD.newDocument()
doc.recompute()