Excitedly I installed EZrotate a short while ago.
The first thing that caught my eye was the rotate command
EZro_Orbit RotateFlag, OriginX#, OriginY#, OriginZ#, point2X#, point2Y#, point2Z#, angle#
The first thing I did was try to make a sphere that orbits around a point in space with this command.
something like
REM first make a planet
MAKE SPHERE 1, 5
POSITION SPHERE 1, 10, 0, 10
color object 1, RGB(0,0,255)
REM then make the sun
MAKE SPHERE 2, 5
POSITION SPHERE 2, 0, 0, 0
color object 2, RGB(255,255,0)
do
<orbiting code in here>
loop
Okay, i'm lost. the EZrotate orbit thing doesn't have parameters for specifying an object.
If anyone has any ideas, please put me out of my misery.