Returns or sets the document's angle tolerance parameter. Angle tolerance is measured degrees. See Rhino's DocumentProperties command (Units and Page Units windows) for details.
Rhino.UnitAngleTolerance ([dblAngleTol [, blnModelUnits]])
dblAngleTol |
Optional. Number. The angle tolerance in degrees. |
blnModelUnits |
Optional. Boolean. Return or modify the document's model units (True) or the document's page units (False). The default is True. |
Number |
If dblAngleTol is not specified, the current angle tolerance if successful. |
Number |
If dblAngleTol is specified, the previous angle tolerance if successful. |
Null |
If not successful, or on error. |
Dim dblAngleTol
dblAngleTol = Rhino.UnitAngleTolerance
If dblAngleTol < 3.0 Then
Rhino.UnitAngleTolerance 3.0
End If