19 lines
416 B
Python
19 lines
416 B
Python
from Base.Metadata import export
|
|
from PartFeature import PartFeature
|
|
|
|
|
|
@export(
|
|
Twin="Part2DObject",
|
|
TwinPointer="Part2DObject",
|
|
Include="Mod/Part/App/Part2DObject.h",
|
|
FatherInclude="Mod/Part/App/PartFeaturePy.h",
|
|
)
|
|
class Part2DObject(PartFeature):
|
|
"""
|
|
This object represents a 2D Shape in a 3D World
|
|
|
|
Author: Juergen Riegel (FreeCAD@juergen-riegel.net)
|
|
Licence: LGPL
|
|
"""
|
|
...
|