78 lines
6.0 KiB
HTML
78 lines
6.0 KiB
HTML
<html><head><title>Embedding FreeCAD/cn</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><link type='text/css' href='wiki.css' rel='stylesheet'></head><body><h1>Embedding FreeCAD/cn</h1></div>
|
|
|
|
<div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><p>FreeCAD 可以作为一个 Python 模块,连同其所有的模块和组件,在其他程序中,或在一个独立的 Python 控制台中导入。它甚至可以导入FreeCAD GUI的Python模块 - 但是有一些限制。
|
|
</p>
|
|
<h3><span class="mw-headline" id=".E6.97.A0_GUI_.E4.BD.BF.E7.94.A8_FreeCAD">无 GUI 使用 FreeCAD</span></h3>
|
|
<p>One first, direct, easy and useful application you can make of this is to import FreeCAD documents into your program. In the following example, we'll import the Part geometry of a FreeCAD document into <a rel="nofollow" class="external text" href="http://www.blender.org">blender</a>. Here is the complete script. I hope you'll be impressed by its simplicity:
|
|
</p>
|
|
<pre>FREECADPATH = '/opt/FreeCAD/lib' # path to your FreeCAD.so or FreeCAD.dll file
|
|
import Blender, sys
|
|
sys.path.append(FREECADPATH)
|
|
|
|
def import_fcstd(filename):
|
|
try:
|
|
import FreeCAD
|
|
except ValueError:
|
|
Blender.Draw.PupMenu('Error%t|FreeCAD library not found. Please check the FREECADPATH variable in the import script is correct')
|
|
else:
|
|
scene = Blender.Scene.GetCurrent()
|
|
import Part
|
|
doc = FreeCAD.open(filename)
|
|
objects = doc.Objects
|
|
for ob in objects:
|
|
if ob.Type[:4] == 'Part':
|
|
shape = ob.Shape
|
|
if shape.Faces:
|
|
mesh = Blender.Mesh.New()
|
|
rawdata = shape.tessellate(1)
|
|
for v in rawdata[0]:
|
|
mesh.verts.append((v.x,v.y,v.z))
|
|
for f in rawdata[1]:
|
|
mesh.faces.append.append(f)
|
|
scene.objects.new(mesh,ob.Name)
|
|
Blender.Redraw()
|
|
|
|
def main():
|
|
Blender.Window.FileSelector(import_fcstd, 'IMPORT FCSTD',
|
|
Blender.sys.makename(ext='.fcstd'))
|
|
|
|
# This lets you import the script without running it
|
|
if __name__=='__main__':
|
|
main()
|
|
</pre>
|
|
<p>The first, important part is to make sure python will find our FreeCAD library. Once it finds it, all FreeCAD modules such as Part, that we'll use too, will be available automatically. So we simply take the sys.path variable, which is where python searches for modules, and we append the FreeCAD lib path. This modification is only temporary, and will be lost when we'll close our python interpreter. Another way could be making a link to your FreeCAD library in one of the python search paths. I kept the path in a constant (FREECADPATH) so it'll be easier for another user of the script to configure it to his own system.
|
|
</p><p>Once we are sure the library is loaded (the try/except sequence), we can now work with FreeCAD, the same way as we would inside FreeCAD's own python interpreter. We open the FreeCAD document that is passed to us by the main() function, and we make a list of its objects. Then, as we choosed only to care about Part geometry, we check if the Type property of each object contains "Part", then we tesselate it.
|
|
</p><p>The tesselation produce a list of vertices and a list of faces defined by vertices indexes. This is perfect, since it is exactly the same way as blender defines meshes. So, our task is ridiculously simple, we just add both lists contents to the verts and faces of a blender mesh. When everything is done, we just redraw the screen, and that's it!
|
|
</p><p>Of course this script is very simple (in fact I made a more advanced <a rel="nofollow" class="external text" href="http://yorik.orgfree.com/scripts/import_freecad.py">here</a>), you might want to extend it, for example importing mesh objects too, or importing Part geometry that has no faces, or import other file formats that FreeCAD can read. You might also want to export geometry to a FreeCAD document, which can be done the same way. You might also want to build a dialog, so the user can choose what to import, etc... The beauty of all this actually lies in the fact that you let FreeCAD do the ground work while presenting its results in the program of your choice.
|
|
</p>
|
|
<h3><span class="mw-headline" id=".E5.B8.A6_GUI_.E4.BD.BF.E7.94.A8_FreeCAD">带 GUI 使用 FreeCAD</span></h3>
|
|
<p>From version 4.2 on Qt has the intriguing ability to embed Qt-GUI-dependent plugins into non-Qt host applications and share the host's event loop.
|
|
</p><p>Especially, for FreeCAD this means that it can be imported from within another application with its whole user interface where the host application has full control over FreeCAD, then.
|
|
</p><p>The whole python code to achieve that has only two lines
|
|
</p>
|
|
<pre>import FreeCADGui
|
|
FreeCADGui.showMainWindow()
|
|
</pre>
|
|
<p>If the host application is based on Qt then this solution should work on all platforms which Qt supports. However, the host should link the same Qt version as FreeCAD because otherwise you could run into unexpected runtime errors.
|
|
</p><p>For non-Qt applications, however, there are a few limitations you must be aware of. This solution probably doesn't work together with all other toolkits.
|
|
For Windows it works as long as the host application is directly based on Win32 or any other toolkit that internally uses the Win32 API such as wxWidgets, MFC or WinForms. In order to get it working under X11 the host application must link the "glib" library.
|
|
</p><p>Note, for any console application this solution of course doesn't work because there is no event loop running.
|
|
</p>
|
|
|
|
<p><br />
|
|
</p>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div><div class="printfooter">
|
|
Online version: "<a dir="ltr" href="https://www.freecadweb.org/wiki/index.php?title=Embedding_FreeCAD/cn&oldid=211450">http://www.freecadweb.org/wiki/index.php?title=Embedding_FreeCAD/cn&oldid=211450</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> |