Banana Man,
I suppose that by adding in the z position you are speaking of a 3D object. However, next time be a tad bit more specific as to what type of coordinates, 2D or 3D.
You can use either the
text or
print command, along with the
str command(this command converts a numeric value to a string) to display these positions, or any other text on-screen.
Example:
xpos# = object position x(1)
ypos# = object position y(1)
zpos# = object position z(1)
REM << using text command
text 5,5,str$(xpos#)
REM << setting the print cursor at specific coords and using the print command(print can display strings or numbers)
set cursor 5,20
print ypos#
text 5,35,str$(zpos#)
+NanoBrain+