Hi,
I would like to merge several connected ngons into one.
Before doing that, I expected I could remove several existing ngons ones, and then create new ones.
But when I print how many ngons are before and after removal I get the same number.
What would be an approach to my problem?
Rhino.RhinoApp.WriteLine(mesh.Ngons.Count.ToString()); //Prints 55
mesh.Ngons.RemoveAt(1);
Rhino.RhinoApp.WriteLine(mesh.Ngons.Count.ToString()); //Prints 55