Hello,
Here is a very short VB script that flip the view to a bottom view. (XY view from bottom)
' CamBam VBScript
' bottom view
sub main
dim c as Point3F = New Point3F(0,0,0)
View.ViewProjection.ViewXYPlane() 'top view (xy)
'rotate view 180° around X (1xPi radian) to get a bottom view
View.ViewProjection.RotateView(0,Math.PI,c)
end sub
Edited on 3/1/2014: use of Math.PI instead of a local variable.
++
David