Part Grundelemente

From FreeCAD Documentation
Revision as of 19:36, 8 May 2020 by Maker (talk | contribs)

Part ErstelleGrundelement

Menüeintrag
Part → ErstelleGrundelement...
Arbeitsbereich
Part
Standardtastenkürzel
Keiner
Eingeführt in Version
-
Siehe auch
Part Formgenerator

Beschreibung

Part Grundelemente öffnet ein Dialogfeld zum Erstellen eines der parametrischen geometrischen Grundelemente, die in Part Arbeitsbereich definiert sind.

Grundelementformen die mit der Part Arbeitsbereich erstellt werden können.

Geometrische Grundelemente

Einige der verfügbaren (parametrischen) geometrischen Grundelemente, die möglich sind:

Vererbung

All part primitives are objects which derive from the Part::Primitive class. This class in turn derives from the basic Part Feature object (Part::Feature class).

Simplified diagram of the relationships between the core objects in the program. The Part::Primitive class is derived from the Part::Feature object. It includes an extension that allows it to be attached to faces and planes.

Scripting

See also: Part scripting

Test the creation of the primitives with a script. introduced in version 0.19

This can be run from the Python console.

import parttests.part_test_objects as pto
pto.create_test_file("example_file")

This script is located in the installation directory of the program, and can be examined to see how the basic primitives are built.

$INSTALL_DIR/Mod/Part/parttests/part_test_objects.py

It can be used as input to the program as well.

freecad $INSTALL_DIR/Mod/Part/parttests/part_test_objects.py