mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-29 10:50:34 +05:00
PAL20544 4x: problems with Concatenate().
set smeshDC.geompyD in SetCurrentStudy()
This commit is contained in:
parent
da567d9f1e
commit
1f2f2d5fa5
@ -237,9 +237,7 @@ class smeshDC(SMESH._objref_SMESH_Gen):
|
|||||||
## Sets the current study and Geometry component
|
## Sets the current study and Geometry component
|
||||||
# @ingroup l1_auxiliary
|
# @ingroup l1_auxiliary
|
||||||
def init_smesh(self,theStudy,geompyD):
|
def init_smesh(self,theStudy,geompyD):
|
||||||
self.geompyD=geompyD
|
self.SetCurrentStudy(theStudy,geompyD)
|
||||||
self.SetGeomEngine(geompyD)
|
|
||||||
self.SetCurrentStudy(theStudy)
|
|
||||||
|
|
||||||
## Creates an empty Mesh. This mesh can have an underlying geometry.
|
## 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,
|
# @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
|
## Sets the current study
|
||||||
# @ingroup l1_auxiliary
|
# @ingroup l1_auxiliary
|
||||||
def SetCurrentStudy( self, theStudy ):
|
def SetCurrentStudy( self, theStudy, geompyD = None ):
|
||||||
#self.SetCurrentStudy(theStudy)
|
#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)
|
SMESH._objref_SMESH_Gen.SetCurrentStudy(self,theStudy)
|
||||||
|
|
||||||
## Gets the current study
|
## Gets the current study
|
||||||
|
Loading…
Reference in New Issue
Block a user