I wasn't sure where to post this question, here, or in the 3 dimensional chat forum. I settled for posting here in the end because it's a pretty n00bish question.
In this piece of code, the "height" of each object is the same and so is the y coordinate in my first code snippet it looks as it should, but in my second, object 4 appears higher than the others. Why?
(no remarks but it should be easy to follow, sorry)
set display mode 1024,768,32
sync on
sync rate 30
make object box 2,50,30,1000
make object box 3,50,30,1000
make object box 4,900,30,50
position object 1,0,0,0
position object 2,-425,0,500
position object 3,425,0,500
position object 4,0,0,1025
position camera 0,750,800
xrotate camera 75
wait key
set display mode 1024,768,32
sync on
sync rate 30
make object box 2,50,30,1000
make object box 3,50,30,1000
make object box 4,900,30,50
position object 2,-425,0,500
position object 3,425,0,500
position object 4,0,0,1025
position camera 0,750,-500
xrotate camera 35
wait key
REM get a signature off the user
INPUT "Type your sig here",sig$
PRINT sig$