Im doing a little programming, and Im working on a space sim, just for the heck of it. I have a sphere size 100 located at 0,0,0 for the sun. Im trying to do stars, but Im having problems positioning them. I want to position them outside the sun sphere. What do I have to do to get them positioned at random places, starting outside the sphere?
Now its only this, but it only positions them at positive xyz values:
`Stars
For i = 2 to 200
Make object sphere i,2
position object i,RND(1000),RND(1000),RND(1000)
color object i,rgb(255,255,255)
set object ambience i,rgb(255,255,255)
Next i