FEM: mesh region, rename class and module

This commit is contained in:
Bernd Hahnebach
2020-05-22 01:08:00 +02:00
parent 08e71fdf4a
commit cb0a26c5b6
6 changed files with 34 additions and 22 deletions

View File

@@ -25,14 +25,14 @@ __title__ = "FreeCAD FEM mesh region document object"
__author__ = "Bernd Hahnebach"
__url__ = "http://www.freecadweb.org"
## @package FemMeshRegion
## @package mesh_region
# \ingroup FEM
# \brief FreeCAD FEM _FemMeshRegion
# \brief mesh region object
from . import FemConstraint
class _FemMeshRegion(FemConstraint.Proxy):
class MeshRegion(FemConstraint.Proxy):
"""
The FemMeshRegion object
"""
@@ -40,7 +40,7 @@ class _FemMeshRegion(FemConstraint.Proxy):
Type = "Fem::MeshRegion"
def __init__(self, obj):
super(_FemMeshRegion, self).__init__(obj)
super(MeshRegion, self).__init__(obj)
obj.addProperty(
"App::PropertyLength",