Converting SubD to Nurbs

Is there a grasshopper plugin that allows the conversion to Nurbs within Grasshopper?
Thank you.

You might want to assign your post to the Grasshopper category so more Grasshoppers see it.

For a simple conversion you can plug a SubD into a Brep component. For a quad sphere, you get 24 surfaces. I also attached a Grasshopper definition with a simple c# script which has the packed option. That creates just two surfaces for a quad sphere…

private void RunScript(SubD SubD, ref object brep)
  {
    brep = SubD.ToBrep(SubDToBrepOptions.DefaultPacked);
  }

subd_to_nurbs_c.gh (13.7 KB)

1 Like

Hi Martin Thank you for your help. Much appreciated.

Regards
William

1 Like