Part TopoShape/de: Difference between revisions

From FreeCAD Documentation
(Created page with "Die Part TopoForm ist ein Objekt, das einigen Anwendung DokumentObjekte zugeordnet ist.")
(Created page with "Insbesondere ist das Basisobjekt, das diese Art von Attributen behandelt, das Part Grundelement. ({{incode|Teil::Feature}} Klasse). Alle von dieser Klasse...")
Line 15: Line 15:
Die Part TopoForm ist ein Objekt, das einigen [[App_DocumentObject/de|Anwendung DokumentObjekte]] zugeordnet ist.
Die Part TopoForm ist ein Objekt, das einigen [[App_DocumentObject/de|Anwendung DokumentObjekte]] zugeordnet ist.


In particular, the basic object that handles these types of attributes is the [[Part_Feature|Part Feature]] ({{incode|Part::Feature}} class). All objects derived from this class will have access to a Part TopoShape.
Insbesondere ist das Basisobjekt, das diese Art von Attributen behandelt, das [[Part_Feature/de|Part Grundelement]]. ({{incode|Teil::Feature}} Klasse). Alle von dieser Klasse abgeleiteten Objekte haben Zugriff auf eine Part TopoForm.


Some of the most important objects with Part TopoShape are the following:
Some of the most important objects with Part TopoShape are the following:

Revision as of 15:20, 17 January 2020

Einleitung

Eine Part TopoForm, oder formal eine Part::TopoShape, ist eine Klasse, die eine parametrische 'topologische Form in der Software definiert. Objekte im Dokument, die etwas in der 3D Ansicht zeigen, haben normalerweise eine TopoForm.

Die topologischen Formen sowie deren Methoden werden durch den OpenCASCADE Technology Kernel (OCCT) definiert. FreeCAD verwendet diese Formen und baut Anwendung DokumentObjekte um sie herum.

Vereinfachtes Diagramm der Beziehungen zwischen den Kernobjekten im Programm. Die Klasse Part::TopoShape wird in das Part::Feature Objekt eingebettet und von dort aus an alle davon abgeleiteten Objekte verbreitet.

Kurzanleitung

Die Part TopoForm ist ein Objekt, das einigen Anwendung DokumentObjekte zugeordnet ist.

Insbesondere ist das Basisobjekt, das diese Art von Attributen behandelt, das Part Grundelement. (Teil::Feature Klasse). Alle von dieser Klasse abgeleiteten Objekte haben Zugriff auf eine Part TopoForm.

Some of the most important objects with Part TopoShape are the following:

Scripting

See also: FreeCAD Scripting Basics, and scripted objects.

All objects derived from Part::Feature will have a Part TopoShape, which is normally accessible from its Shape attribute.

import FreeCAD as App

doc = App.newDocument()
obj = App.ActiveDocument.addObject("Part::Box", "Box")
print(obj.Shape)

A TopoShape has many attributes (variables) and methods that contain information about it, and which allow doing operations with it. These variables and methods can be tested in the Python console.

print(obj.Shape.Area)
print(obj.Shape.BoundBox)
print(obj.Shape.CenterOfMass)
print(obj.Shape.ShapeType)

obj.Shape.check()
obj.Shape.copy()
obj.Shape.exportStep("my_file.step")
obj.Shape.exportStl("my_file.stl")

For a full list of attributes and methods, consult the source documentation, and the Std PythonHelp tool.