Hi,
We are trying to create a class which inherets the Rhino.RhinoDoc, but this does not appear to work. See example below. Is it possible/allowed to inherit this class?
import rhinoinside
rhinoinside.load()
import System
import Rhino
import Rhino.Geometry as geom
class Doc(Rhino.RhinoDoc):
def __init__(self, filename=None):
if filename:
self.OpenHeadless(filename)
else:
self.CreateHeadless(None)