Yeah it is possible!
I've made a small example on how to do it. I've split the screen up in two camera views, each with a rotating box on.
The Example:
sync on
sync rate 60
hide mouse
`Make two boxes
make object box 1,10,10,10
color object 1,RGB(255,0,0)
position object 1,0,0,0
`--------------
make object box 2,10,10,10
color object 2,RGB(0,255,0)
position object 2,0,0,-50
`\\
`Make the new camera
make camera 1
`\\
`Camere view settings
set camera view 0,0,0,screen width(),screen height()/2
set camera view 1,0,screen height()/2,screen width(),screen height()
point camera 0,object position x(1),object position y(1),object position z(1)
point camera 1,object position x(2),object position y(2),object position z(2)
`\\
do
`Rotate the objects
yrotate object 1,object angle y(1)+2
yrotate object 2,object angle y(2)+2
`\\
sync
loop
If there's something you don't understand then just ask
Hope it helped
-The Nerd
PanzerGames
here
Free Particle Engine For dbpro :
here