Ha! I asked this a couple of days ago... Now if I remember...
You can make a Cube or Sphere *MAKE OBJECT CUBE 1, -100
and you wanna set the size to a negative number that way you can only see it from the inside
OK you can position that object anywhere and then position your object or camera in the middle! Thats it!
LOAD IMAGE "ground.bmp", 1 : LOAD IMAGE "sky.bmp", 2
MAKE OBJECT SPHERE 3, -50 : TEXTURE OBJECT 3, 2 : POSITION OBJECT 3, 5, 0, 25
MAKE MATRIX 4, 10, 10, 10, 10 : PREPARE MATRIX TEXTURE 4, 1, 1, 1
MAKE CAMERA 1
POSITION CAMERA 1, 5, 2, 0
X = 0
DO
ROTATE OBJECT 3, X, X, X
X = X + 1
CONTROL CAMERA USING ARROWKEYS 1, 1, 2
LOOP
Thats what I made ... if it helps.
Um...