When I run -_QuadRemesh in rhino I see this:

But in C# I see this:
Why is the parameter missing in the C# API?
When I run -_QuadRemesh in rhino I see this:
But in C# I see this:
Why is the parameter missing in the C# API?
The parameter is on the list to be added during 7.
The good news is that it can be set without a special method or parameter on the class in the meantime. This is how its calculated.
edgeLength is your desired target edge length.
https://mcneel.myjetbrains.com/youtrack/issue/RH-59654
var parameters = new QuadRemeshParameters();
var area = AreaMassProperties.Compute(Your_Mesh).Area;
parameters.TargetQuadCount = Convert.ToInt32(Math.Round(area / (edgeLength * edgeLength), 0));
parameters.AdaptiveSize = 0.0;
parameters.AdaptiveQuadCount = false;
Thanks. That is pretty much how we calculate the TargetQuadCount now. I thought it was something more complex in the algorithm itself.
Nope, that’s exactly what I’m doing behind the scenes in the UI. That’s why I didn’t originally add it to RhinoCommon but I think you’re the 2nd or 3rd person whos asked for it so I’ll get it in there to make it easier to discover.
Looking now the solution seems so obvious to me.
I’m ashamed that I didn’t realize this sooner.
Thanks for posting!!!