Enables or disables Rhino's ortho modeling aid.
rhinoscriptsyntax.Ortho( enable=None )
rhinoscript.application.Ortho( enable=None )
enable |
Optional. Boolean. The new enabled status, either True or False. |
Boolean |
If enable is not specified, then the current ortho status if successful. |
Boolean |
If enable is specified, then the previous ortho status if successful. |
import rhinoscriptsyntax as rs
if not rs.Ortho(): rs.Ortho(True)