From: Cettinich E. (LWE) <edw...@lw...> - 2002-11-05 09:36:45
|
Hi, I try to make 1 objectlist visible in 2 displays. But neither ######################################## from visual import * scene1=3Ddisplay(title=3D"1st") b=3Dbox(x=3D-1) b=3Dbox(x=3D1,y=3D-1) scene2=3Ddisplay(title=3D"2nd") scene2.objects=3Dscene1.objects ######################################## nor ######################################## import copy from visual import * scene1=3Ddisplay(title=3D"1st") b=3Dbox(x=3D-1) b=3Dbox(x=3D1,y=3D-1) scene2=3Ddisplay(title=3D"2nd") scene2.objects=3Dcopy.deepcopy(scene1.objects) ######################################## could make scene2 show the objects owned by scene1. Does anyone have a suggestion what to do? Thanks, Edwin |