25 lines
517 B
Python
25 lines
517 B
Python
# SPDX-License: LGPL-2.1-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from Base.Metadata import export, constmethod
|
|
from PartFeature import PartFeature
|
|
|
|
@export(
|
|
Twin="BodyBase",
|
|
TwinPointer="BodyBase",
|
|
Include="Mod/Part/App/BodyBase.h",
|
|
Namespace="Part",
|
|
FatherInclude="Mod/Part/App/PartFeaturePy.h",
|
|
FatherNamespace="Part",
|
|
)
|
|
class BodyBase(PartFeature):
|
|
"""
|
|
Base class of all Body objects
|
|
|
|
Author: Juergen Riegel (FreeCAD@juergen-riegel.net)
|
|
Licence: LGPL
|
|
"""
|
|
|
|
...
|