TiltView

Tilts a view by rotating the camera up vector.  See the TiltView command in the Rhino help file for more details.

Syntax

rhinoscriptsyntax.TiltView ( view=None, direction=0, angle=None )

rhinoscript.view.TiltView ( view=None, direction=0, angle=None )

Parameters

view

Optional.  String or Guid.  The title or identifier of the view.  If omitted, the current active view is used.

direction

Optional. Number, The direction to rotate the camera where 0 = right and 1 = left.

angle

Optional.  Number.  The angle to rotate. If omitted, the angle of rotation is specified by the "Increment in divisions of a circle" parameter specified in Options command's View tab.

Returns

Boolean

True or False indicating success or failure.

Example

import rhinoscriptsyntax as rs

rs.TiltView( angle=15 )

Also See

RotateCamera