FEM: mesh result, rename class and module

This commit is contained in:
Bernd Hahnebach
2020-05-22 01:08:02 +02:00
parent a9127e5c4b
commit b74ec6515d
6 changed files with 31 additions and 19 deletions

View File

@@ -25,14 +25,14 @@ __title__ = "FreeCAD FEM mesh result document object"
__author__ = "Bernd Hahnebach"
__url__ = "http://www.freecadweb.org"
## @package FemMeshResult
## @package mesh_result
# \ingroup FEM
# \brief FreeCAD FEM _FemMeshResult
# \brief mesh result object
from . import FemConstraint
class _FemMeshResult(FemConstraint.Proxy):
class MeshResult(FemConstraint.Proxy):
"""
The Fem::FemMeshObject's Proxy python type, add Result specific object type
"""
@@ -40,4 +40,4 @@ class _FemMeshResult(FemConstraint.Proxy):
Type = "Fem::MeshResult"
def __init__(self, obj):
super(_FemMeshResult, self).__init__(obj)
super(MeshResult, self).__init__(obj)