Dear , into opennurbs sources ,from a ON_Hatch , is there a method for getting the display list of curve ?
when I use , into rhino software , the method Explode on Hatch , I can see the list of curve but it is into rhino , do you know a similar method into opennurbs function ?
Unfortunately there is not. The Explode command eventually ends up calling the Rhino SDK’s CRhinoHatchPattern::CreateDisplay, which generates the geometry. This function uses private methods not available in public openNURBS.
This said, I’ve worked up something that should get you pretty close to what Rhino produces. Give it a try and let me know if it helps.
with your code , I get all IsoLine on surface , but these line are whole , so we need to split these line with outer and inner loop for getting the exact display line ?