Visual module in python assign objects
Hi all, I am a newb in Visual module in python, not really understand how does it assign a value to an objects. say from visual import * stars=[] galaxies=[] for i in range(10): stars+=[sphere('pos,radius,color.....')] for j in range(20): galaxies+=[sphere('pos,radius,color......')] for k in range(30): stars[k].pos=position...