Macro ForceRecompute

Force Recompute.png Macro Force Recompute

Description
Forces manual recompute of model
Author
shoogen
Links
Macros recipes
How to install macros
How to customize toolbars
Version
1.0
Date last modification
2014-09-01


Sometimes the user applies changes to the model in FreeCAD. But FreeCAD does not seem to recognize them. So the blue "Recompute" icon View-refresh.svg stayes greyed out. This small macro forces a manual recompute of the model.

Since FreeCAD v0.17, the effect of this macro can be achieved through GUI. Right-click project in model tree view, and pick "Mark to recompute" from context menu. After that, press Recompute button.

Use

Just run the macro when needed.

Script

Macro Force_Recompute.py

# -*- coding: utf-8 -*-
# Force Recompute
# macro provided by shoogen

import FreeCAD
for obj in FreeCAD.ActiveDocument.Objects:
 obj.touch()
FreeCAD.ActiveDocument.recompute() 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Macro_ForceRecompute&oldid=240968"

Navigation menu