PAL20544 4x: problems with Concatenate().

set smeshDC.geompyD in SetCurrentStudy()
This commit is contained in:
eap 2008-10-24 08:11:58 +00:00
parent da567d9f1e
commit 1f2f2d5fa5

View File

@ -237,9 +237,7 @@ class smeshDC(SMESH._objref_SMESH_Gen):
## Sets the current study and Geometry component
# @ingroup l1_auxiliary
def init_smesh(self,theStudy,geompyD):
self.geompyD=geompyD
self.SetGeomEngine(geompyD)
self.SetCurrentStudy(theStudy)
self.SetCurrentStudy(theStudy,geompyD)
## Creates an empty Mesh. This mesh can have an underlying geometry.
# @param obj the Geometrical object on which the mesh is built. If not defined,
@ -330,8 +328,14 @@ class smeshDC(SMESH._objref_SMESH_Gen):
## Sets the current study
# @ingroup l1_auxiliary
def SetCurrentStudy( self, theStudy ):
def SetCurrentStudy( self, theStudy, geompyD = None ):
#self.SetCurrentStudy(theStudy)
if not geompyD:
import geompy
geompyD = geompy.geom
pass
self.geompyD=geompyD
self.SetGeomEngine(geompyD)
SMESH._objref_SMESH_Gen.SetCurrentStudy(self,theStudy)
## Gets the current study