Modifications from Erwan Adam for bug PAL12407 : Improvement of batchmode_geompy.py.

This commit is contained in:
mkr 2006-05-18 10:44:16 +00:00
parent 6c15ac4d85
commit bad69bc967

View File

@ -31,10 +31,16 @@ import GEOM
g=None
step = 0
while step < 50 and g == None:
sleeping_time = 0.01
sleeping_time_max = 1.0
while 1:
g = lcc.FindOrLoadComponent("FactoryServer", "GEOM")
if g is not None: break
step = step + 1
time.sleep(4)
if step > 100: break
time.sleep(sleeping_time)
sleeping_time = max(sleeping_time_max, 2*sleeping_time)
pass
geom = g._narrow( GEOM.GEOM_Gen )
myBuilder = myStudy.NewBuilder()