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