FEM: mesh group, rename class and module

This commit is contained in:
Bernd Hahnebach
2020-05-22 01:07:58 +02:00
parent 32c9abdde9
commit 08e71fdf4a
6 changed files with 37 additions and 25 deletions

View File

@@ -25,22 +25,22 @@ __title__ = "FreeCAD FEM mesh group document object"
__author__ = "Bernd Hahnebach"
__url__ = "http://www.freecadweb.org"
## @package FemMeshGroup
## @package mesh_group
# \ingroup FEM
# \brief FreeCAD FEM _FemMeshGroup
# \brief mesh group object
from . import FemConstraint
class _FemMeshGroup(FemConstraint.Proxy):
class MeshGroup(FemConstraint.Proxy):
"""
The FemMeshGroup object
The MeshGroup object
"""
Type = "Fem::MeshGroup"
def __init__(self, obj):
super(_FemMeshGroup, self).__init__(obj)
super(MeshGroup, self).__init__(obj)
obj.addProperty(
"App::PropertyBool",