FEM: element rotation 1D, rename class and module

This commit is contained in:
Bernd Hahnebach
2020-05-22 01:07:47 +02:00
parent e2970232a2
commit 141afdfcef
6 changed files with 33 additions and 21 deletions

View File

@@ -25,22 +25,22 @@ __title__ = "FreeCAD FEM element rotation 1D document object"
__author__ = "Bernd Hahnebach"
__url__ = "https://www.freecadweb.org"
## @package FemElementRotation1D
## @package element_rotation1D
# \ingroup FEM
# \brief FreeCAD FEM element rotation 1D object
# \brief element rotation 1D object
from . import FemConstraint
class _FemElementRotation1D(FemConstraint.Proxy):
class ElementRotation1D(FemConstraint.Proxy):
"""
The FemElementRotation1D object
The ElementRotation1D object
"""
Type = "Fem::ElementRotation1D"
def __init__(self, obj):
super(_FemElementRotation1D, self).__init__(obj)
super(ElementRotation1D, self).__init__(obj)
obj.addProperty(
"App::PropertyAngle",