Returns the names of all named construction planes in the document.
rhinoscriptsyntax.NamedCPlanes ()
rhinoscript.view.NamedCPlanes ()
None.
List |
A zero-based, one-dimensional array of strings identifying the named construction planes if successful. |
import rhinoscriptsyntax as rs
cplanes = rs.NamedCPlanes()
if cplanes:
for cplane in cplanes: print cplane