Sets the viewing direction from which the scene in the Surface Module window is "seen".
objDocument.SetViewpointAngles(intAngleX, intAngleY, intAngleZ)
Valid only if objDocument is of type VMR and if the Surface Module window for this VMR project has been created. This method sets the angles [in degrees] of the viewpoint with respect to the three coordinate axes; use the method SetViewpointPosition to also set the position of the viewpoint. To update the Surface Module window, call the RefreshSurfaceWindow method.
' VBScript
doc.SetViewpointAngles 180, -75, -25
doc.RefreshSurfaceWindow
// JScript
doc.SetViewpointAngles(180, -75, -25);
doc.RefreshSurfaceWindow();
#
PerlScript
$doc->SetViewpointAngles(180, -75, -25);
$doc->RefreshSurfaceWindow();