From: Bruce S. <bas...@un...> - 2002-06-13 21:48:34
|
There is a simpler way to make all the objects in a frame be invisible: f = frame() ball = sphere(frame=f) carton = box() for obj in f.objects: obj.visible = 0 I see that there is something missing from the Visual documentation -- it doesn't tell you that "objects" is an attribute of a frame. I'll fix that. Bruce Sherwood |