Matrix map with an image. Could be useful...
`*****************************************************
`Matrix mapping with colors
`*****************************************************
sync on : sync rate 0
`make simple image for height mapping
for i=1 to 25
ink rgb(i*10,0,0),0
box i,i,50-i,50-i
next i
get image 1,0,0,50,50
`make a matrix
make matrix 1,1000,1000,50,50
prepare matrix texture 1,1,1,1
`set matrix height
for x=1 to 50
for y=1 to 50
paste image 1,0,0
set matrix height 1,x,y,rgbr(point(x,y))
center text 320,240,str$(x)+" "+str$(y)
next y
next x
update matrix 1
`loop
do
`view the matrix
position camera 0,500,0
point camera 500,0,500
`sync
sync
loop
greets