Retrieves the cursor's position.
Rhino.GetCursorPos ()
None.
Array |
An array containing the following information if successful:
|
||||||||||
Null |
If not successful, or on error. |
Dim arrCursor
arrCursor = Rhino.GetCursorPos
Rhino.Print "World = " & Rhino.Pt2Str(arrCursor(0))
Rhino.Print "Screen= " & Rhino.Pt2Str(arrCursor(1))
Rhino.Print "View = " & arrCursor(2)
Rhino.Print "Client = " & Rhino.Pt2Str(arrCursor(3))
Rhino.AddPoint arrCursor(0)