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

110 lines
5.0 KiB
HTML

<html><head><title>Macro hinge</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 hinge</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="Hinge_Simul"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Text-x-python.png" class="image"><img alt="Text-x-python.png" src="32px-Text-x-python.png" width="32" height="32" srcset="/wiki/images/2/2c/Text-x-python.png 1.5x" /></a> Hinge Simul</span></h3>
</td></tr>
<tr>
<th class="ctOdd">Description
</th></tr>
<tr>
<td class="ctEven left macro-description">Hinge simulation.
</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:Mario52" title="User:Mario52">Mario52</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-09
</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="#Hinge_Simul"><span class="tocnumber">1</span> <span class="toctext">Hinge Simul</span></a></li>
<li class="toclevel-1 tocsection-1"><a href="#Uses"><span class="tocnumber">2</span> <span class="toctext">Uses</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#The_File"><span class="tocnumber">3</span> <span class="toctext">The File</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Script"><span class="tocnumber">4</span> <span class="toctext">Script</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Link"><span class="tocnumber">5</span> <span class="toctext">Link</span></a></li>
</ul>
</div>
</td></tr>
</table>
<p><br />
</p><p>Simulates hinge movement
</p>
<div class="floatleft"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Hing_00.gif" class="image"><img alt="Hing 00.gif" src="Hing_00.gif" width="428" height="413" /></a></div><div style="clear:both"></div>
<p><br />
</p>
<h3><span class="mw-headline" id="Uses">Uses</span></h3>
<p>Open the 2 files (20140908b_Hinge-1.FCMacro and 20140908b_Hinge-1.FCStd) in FreeCAD with 2 screens (Menu: Windows &gt; Tile) and click in the window and the macro and click F6 (debug macro) to run the macro or run the macro with <a href="https://www.freecadweb.org/wiki/index.php?title=File:Macro-execute.svg" class="image"><img alt="Macro-execute.svg" src="Macro-execute.svg" width="64" height="64" /></a>
</p>
<div class="floatleft"><a href="https://www.freecadweb.org/wiki/index.php?title=File:Hing_01.png" class="image"><img alt="Hing 01.png" src="300px-Hing_01.png" width="300" height="154" srcset="/wiki/images/thumb/7/7b/Hing_01.png/450px-Hing_01.png 1.5x, /wiki/images/thumb/7/7b/Hing_01.png/600px-Hing_01.png 2x" /></a></div><div style="clear:both"></div>
<p><br />
</p>
<h3><span class="mw-headline" id="The_File">The File</span></h3>
<p><a rel="nofollow" class="external text" href="http://forum.freecadweb.org/download/file.php?id=7628">20140908b_Hinge-1.fcstd</a>
</p>
<h3><span class="mw-headline" id="Script">Script</span></h3>
<p>20140908b_Hinge-1.FCMacro
</p>
<pre>import FreeCAD, FreeCADGui, Draft, Part
from FreeCAD import Base
import time
ii = 0
pas = 0
for ii2 in range(180):
if pas == 0:
if ii &gt; 90:
pas = 1
ii += 5
else:
if ii &lt; 1:
pas = 0
ii -= 5
App.getDocument("_0140908b_Hinge_1").Fusion.Placement=App.Placement(App.Vector(0,0,0), App.Rotation(App.Vector(0,0,1),ii), App.Vector(44.4,6.9,0))
App.Console.PrintMessage(str(ii2)+" " + str(ii)+" " + str(pas) +"\n")
Gui.updateGui()
time.sleep(0) #modify the time here </pre>
<h3><span class="mw-headline" id="Link">Link</span></h3>
<p>The discussion page <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewtopic.php?f=3&amp;t=7606&amp;p=62086#p62086">Struggling with LinearPattern (again)</a>
</p>
<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_hinge&amp;oldid=239980">http://www.freecadweb.org/wiki/index.php?title=Macro_hinge&amp;oldid=239980</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>