132 lines
5.6 KiB
HTML
132 lines
5.6 KiB
HTML
<html><head><title>Macro WireXYZ/fr</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 WireXYZ/fr</h1></div>
|
|
|
|
<div id="mw-content-text" lang="fr" 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="WireXYZ"><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> WireXYZ</span></h3>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Description
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven left">Crée un wire avec les coordonnées x y z. d'un fichier
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Auteur
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=User:Mario52" title="User:Mario52">Mario52</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Liens
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven"><a href="https://www.freecadweb.org/wiki/index.php?title=Macros_recipes/fr" title="Macros recipes/fr">Recettes macros</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=How_to_install_macros/fr" title="How to install macros/fr">Comment installer une macro</a><br /><a href="https://www.freecadweb.org/wiki/index.php?title=Customize_Toolbars/fr" title="Customize Toolbars/fr">Comment ajouter une barre d'outils</a>
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Version
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-version">0.1
|
|
</td></tr>
|
|
<tr>
|
|
<th class="ctOdd">Date dernière modification
|
|
</th></tr>
|
|
<tr>
|
|
<td class="ctEven macro-date">2016-09-06
|
|
</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="#WireXYZ"><span class="tocnumber">1</span> <span class="toctext">WireXYZ</span></a></li>
|
|
<li class="toclevel-1 tocsection-1"><a href="#Description"><span class="tocnumber">2</span> <span class="toctext">Description</span></a></li>
|
|
<li class="toclevel-1 tocsection-2"><a href="#Utilisation"><span class="tocnumber">3</span> <span class="toctext">Utilisation</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="#Liens"><span class="tocnumber">5</span> <span class="toctext">Liens</span></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
</td></tr>
|
|
</table>
|
|
<p><br />
|
|
</p>
|
|
<h3><span class="mw-headline" id="Description">Description</span></h3>
|
|
<p>Cette macro crée un wire (ou points) avec les coordonnées XYZ extraites d'un fichier.
|
|
Les coordonnées X Y Z sont séparées par un espace.
|
|
</p>
|
|
<h3><span class="mw-headline" id="Utilisation">Utilisation</span></h3>
|
|
<p>Le fichier doit avoir les coordonnées X Y Z au ASCII sans entête.
|
|
</p><p><b>EX:</b>
|
|
</p><p><code>
|
|
0 240.42686 0
|
|
</p><p>20 243.83054 0
|
|
</p><p>40 247.33677 0
|
|
</p><p>60 250.94702 0
|
|
</p><p>80 254.66283 0
|
|
</p><p>100 258.48575 0
|
|
</p><p>...
|
|
</code>
|
|
</p><p>Modifiez le chemin et nom du fichier, sauvez la macro, rechargez la macro et lancez la.
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>fichier = "C:\yourPath\cloud.asc" # path and name of file.txt</pre></div>
|
|
<p>Si vous voulez un wire fermé, modifiez le code (closed=False):
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>Draft.makeWire(wire,closed=False,face=False,support=None) # create the wire open</pre></div>
|
|
<p>et remplacez le par (closed=True)
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre>Draft.makeWire(wire,closed=True,face=False,support=None) # create the wire closed</pre></div>
|
|
<p>même procédure pour la face, False ou True (face=True).
|
|
</p>
|
|
<h3><span class="mw-headline" id="Script">Script</span></h3>
|
|
<p>Macro_WireXYZ.FCMacro
|
|
</p>
|
|
<div class="mw-highlight mw-content-ltr" dir="ltr"><pre># -*- coding: utf-8 -*-
|
|
# created a wire with coordinate x y z separated (in the file)
|
|
#EX:
|
|
#0 0 0
|
|
#10 10 10
|
|
#15 20 25
|
|
#. . . .
|
|
|
|
from __future__ import unicode_literals
|
|
from FreeCAD import Base
|
|
import Draft, Part
|
|
|
|
fichier = "C:\yourPath\cloud.asc" # path and name of file.txt
|
|
|
|
file = open(fichier, "r") # open the file read
|
|
wire = []
|
|
X=Y=Z = 0.0
|
|
|
|
for ligne in file:
|
|
coordinates = ligne.split()
|
|
X,Y,Z = coordinates # separate the coordinates
|
|
# Draft.makePoint(float(X),float(Y),float(Z)) # create points (uncomment for use)
|
|
print X," ",Y," ",Z
|
|
wire.append(FreeCAD.Vector(float(X),float(Y),float(Z))) # append the coordinates
|
|
|
|
file.close()
|
|
Draft.makeWire(wire,closed=False,face=False,support=None) # create the wire open
|
|
#Draft.makeWire(wire,closed=True,face=False,support=None) # create the wire closed (uncomment for use)</pre></div>
|
|
<h3><span class="mw-headline" id="Liens">Liens</span></h3>
|
|
<p>La discussion sur le forum <a rel="nofollow" class="external text" href="http://forum.freecadweb.org/viewtopic.php?f=3&t=7828">How do I transform a point cloud to a line?</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_WireXYZ/fr&oldid=240712">http://www.freecadweb.org/wiki/index.php?title=Macro_WireXYZ/fr&oldid=240712</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> |