PythonOCC/de: Difference between revisions

From FreeCAD Documentation
(Created page with "== Anwendung ==")
No edit summary
Line 11: Line 11:
== Anwendung ==
== Anwendung ==


Das [[Part_Module/de|Part Modul]] hat die Methoden {{incode|Part.__toPythonOCC__()}} und {{incode|Part.__fromPythonOCC__()}} zum Austausch {{incode|TopoDS_Shape}} ([[Part_TopoShape/de|Part TopoForm]]) von Entitäten zu und von PythonOCC. Diese Methoden ermöglichen es uns, die volle Leistung von OCCT in Python zu nutzen und die resultierenden Formen dann wieder in FreeCAD Objekte einzufügen.
<div class="mw-translate-fuzzy">
Derzeit haben wir im Part Arbeitsbereich die Methoden: '''Part.__toPythonOCC__()''' und '''Part.__fromPythonOCC__()'''', um TopoDS_Shape Entitäten zu/von PythonOCC auszutauschen. Dies ermöglicht es, die volle Leistung von OCC in Python (unter Verwendung von Pythonocc) zu nutzen und die resultierenden Shapes dann wieder in FreeCAD einzubinden.
</div>


PythonOCC is internally used by the [[Arch_IFC|IFC]] viewer included with the [[IfcOpenShell|IfcOpenShell]] libraries. IfcOpenShell is used to read and write [[Arch_IFC|IFC]] documents with FreeCAD. PythonOCC is only needed to launch IfcOpenShell's integrated viewer, otherwise it is not necessary.
PythonOCC is internally used by the [[Arch_IFC|IFC]] viewer included with the [[IfcOpenShell|IfcOpenShell]] libraries. IfcOpenShell is used to read and write [[Arch_IFC|IFC]] documents with FreeCAD. PythonOCC is only needed to launch IfcOpenShell's integrated viewer, otherwise it is not necessary.

Revision as of 08:02, 2 November 2020

Beschreibung

PythonOCC ist ein Projekt, das darauf abzielt, den gesamten Funktionsumfang von OpenCASCADE Technologie (OCCT) Funktionen durch das Python Modul bereitzustellen. Dies ist ein anderer Ansatz als der von FreeCAD, bei dem nur bestimmte Komponenten von OCCT über den Part Arbeitsbereich ausgesetzt werden.

PythonOCC hingegen bietet Zugriff auf alle OCCT Klassen und Funktionen, ist also komplex, aber auch sehr mächtig. Wenn du also durch die OCCT Funktionalität von FreeCAD eingeschränkt bist, ist die Verwendung von OCC eine gute Alternative.

Anwendung

Das Part Modul hat die Methoden Part.__toPythonOCC__() und Part.__fromPythonOCC__() zum Austausch TopoDS_Shape (Part TopoForm) von Entitäten zu und von PythonOCC. Diese Methoden ermöglichen es uns, die volle Leistung von OCCT in Python zu nutzen und die resultierenden Formen dann wieder in FreeCAD Objekte einzufügen.

PythonOCC is internally used by the IFC viewer included with the IfcOpenShell libraries. IfcOpenShell is used to read and write IFC documents with FreeCAD. PythonOCC is only needed to launch IfcOpenShell's integrated viewer, otherwise it is not necessary.

Installation

PythonOCC must be compiled from source. For this you need to get the corresponding development files for OpenCASCADE Technology (OCCT) and SWIG. The older version of PythonOCC was intended to wrap around OCE 0.18, the community edition of OCCT 6.9.x, which is now unmaintained. The newest version of PythonOCC is now intended to work with the recent, official OCCT 7.4 version.

Together with OCCT 7.4, PythonOCC requires fairly recent dependencies like Python 3.7, CMake 3.12, and SWIG 3.0.11. Python 2 is no longer supported.

It is also possible to install pre-compiled PythonOCC libraries using Conda. For more information and compilation instructions, see the main project's repository, tpaviot/pythonocc-core.

More information