76 lines
2.8 KiB
HTML
76 lines
2.8 KiB
HTML
<html><head><title>Macro FlattenWire/sv</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 FlattenWire/sv</h1></div>
|
|
|
|
<div id="mw-content-text" lang="sv" dir="ltr" class="mw-content-ltr"><hr/><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="FlattenWire"><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> FlattenWire</span></h3>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Beskrivning
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven left macro-description">Ingen
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Författare
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-author"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Yorik" title="User:Yorik">Yorik</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Links
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/sv" title="Macros recipes/sv">Makron recept</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/sv" title="How to install macros/sv">How to install macros</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/sv" title="Customize Toolbars/sv">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-version">2011-08-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="#FlattenWire"><span class="tocnumber">1</span> <span class="toctext">FlattenWire</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</td></tr>
|
|
</table>
|
|
<p><br />
|
|
</p><p>Detta makro plattar ut ritlinjer som inte är parallella (i Z-axeln) till deras median Z koordinat.
|
|
</p>
|
|
<pre>import FreeCAD
|
|
obj = FreeCAD.ActiveDocument.ActiveObject
|
|
z = 0
|
|
for p in obj.Points: z += p.z
|
|
z = z/len(obj.Points)
|
|
newpoints = []
|
|
for p in obj.Points: newppoints.append(FreeCAD.Vector(p.x,p.y,z))
|
|
obj.Points = newppoints </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_FlattenWire/sv&oldid=240768">http://www.freecadweb.org/wiki/index.php?title=Macro_FlattenWire/sv&oldid=240768</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> |