FreeCAD-Doc/localwiki/Macro_ForceRecompute.html
2018-07-08 12:11:49 -05:00

88 lines
3.8 KiB
HTML

<html><head><title>Macro ForceRecompute</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Macro ForceRecompute</h1></div>
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><table class="fcinfobox wikitable ct" width="100%" style="float: right; width: 230px; margin-left: 10px;">
<tr>
<td class="ctTitle">
<h3><span class="mw-headline" id="Macro_Force_Recompute"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Force_Recompute.png" class="image"><img alt="Force Recompute.png" src="32px-Force_Recompute.png" width="32" height="32" srcset="/wiki/images/8/88/Force_Recompute.png 1.5x" /></a> Macro Force Recompute</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Description
</th></tr>
<tr>
<td class="ctEven left macro-description">Forces manual recompute of model
</td></tr>
<tr>
<th class="ctOdd">Author
</th></tr>
<tr>
<td class="ctEven macro-author"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Shoogen&amp;action=edit&amp;redlink=1" class="new" title="User:Shoogen (page does not exist)">shoogen</a>
</td></tr>
<tr>
<th class="ctOdd">Links
</th></tr>
<tr>
<td class="ctEven"><a href="Macros_recipes.html" title="Macros recipes">Macros recipes</a><br /><a href="How_to_install_macros.html" title="How to install macros">How to install macros</a><br /><a href="Customize_Toolbars.html" title="Customize Toolbars">How to customize toolbars</a>
</td></tr>
<tr>
<th class="ctOdd">Version
</th></tr>
<tr>
<td class="ctEven macro-version">1.0
</td></tr>
<tr>
<th class="ctOdd">Date last modification
</th></tr>
<tr>
<td class="ctEven macro-date">2014-09-01
</td></tr>
<tr>
<th class="ctOdd">
</th></tr>
<tr>
<td class="ctToc"><br /><div id="toc" class="toc"><div class="toctitle"><h2>Contents</h2></div>
<ul>
<li class="toclevel-1"><a href="#Macro_Force_Recompute"><span class="tocnumber">1</span> <span class="toctext">Macro Force Recompute</span></a></li>
<li class="toclevel-1 tocsection-1"><a href="#Use"><span class="tocnumber">2</span> <span class="toctext">Use</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#Script"><span class="tocnumber">3</span> <span class="toctext">Script</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p><p>Sometimes the user applies changes to the model in FreeCAD.
But FreeCAD does not seem to recognize them.
So the blue "Recompute" icon <a href="https://www.freecadweb.org/wiki/index.php?title=File:View-refresh.svg" class="image"><img alt="View-refresh.svg" src="View-refresh.svg" width="16" height="16" /></a> stayes greyed out.
This small macro forces a manual recompute of the model.
</p><p>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 <a href="Std_Refresh.html" title="Std Refresh">Recompute</a> button.
</p>
<h3><span class="mw-headline" id="Use">Use</span></h3>
<p>Just run the macro when needed.
</p>
<h3><span class="mw-headline" id="Script">Script</span></h3>
<p>Macro Force_Recompute.py
</p>
<pre># -*- coding: utf-8 -*-
# Force Recompute
# macro provided by shoogen
import FreeCAD
for obj in FreeCAD.ActiveDocument.Objects:
obj.touch()
FreeCAD.ActiveDocument.recompute() </pre>
<div style="clear:both"></div>
</div>
</div>
</div><div class="printfooter">
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Macro_ForceRecompute&amp;oldid=240968">http://www.freecadweb.org/wiki/index.php?title=Macro_ForceRecompute&amp;oldid=240968</a>"</div>
<div id="catlinks" class="catlinks" data-mw="interface"></div><div class="visualClear"></div>
</div>
</div>
<div id="mw-navigation">
<h2>Navigation menu</h2>
</body></html>