This should be possible in the Rhino 7 WIP.
// create a headless doc and import
using(var doc = RhinoDoc.New(null))
{
doc.Import("my_path_to_svg.svg");
// copy objects out of Document.Object table for use later
}
This should be possible in the Rhino 7 WIP.
// create a headless doc and import
using(var doc = RhinoDoc.New(null))
{
doc.Import("my_path_to_svg.svg");
// copy objects out of Document.Object table for use later
}