I am trying to use Rhino.Inside to open a rhino window from a Node.js app. So far I seem to have the node.js part down, as I am able to call the dll file. But I am having trouble opening rhino through C#. I am able to start RhinoCore and interpret the geometry, but I don’t see any windows pop up. Here is what I current have:
rhinoCore = new RhinoCore(new string[] { "/NOSPLASH" }, WindowStyle.Normal);
Does anyone have any idea what I am doing wrong? Is this the wrong approach?