Sets the 3D position of the viewpoint from which the scene in the Surface Module window is "seen".
objDocument.SetViewpointPosition(intX, intY, intZ)
Valid only if objDocument is of type VMR and if the Surface Module window for this VMR project has been created. This method sets only the position of the viewpoint; use the method SetViewpointAngles to also set the viewing direction. To update the Surface Module window, call the RefreshSurfaceWindow method.
' VBScript
doc.SetViewpointPosition 0, 30, -550
doc.RefreshSurfaceWindow
// JScript
doc.SetViewpointPosition(0, 30, -550);
doc.RefreshSurfaceWindow();
# PerlScript
$doc->SetViewpointPosition(0, 30, -550);
$doc->RefreshSurfaceWindow();