CancellationToken token = new CancellationToken();
IProgress<int> progress = new Progress<int>(s=>Rhino.RhinoApp.WriteLine($"Computing {s}"));
ResultMesh = await Mesh.QuadRemeshBrepAsync(BrepToMesh, quad, progress, token);
This will only report “0” and then nothing more. Is this an incorrect way to call the method or is the progress report not implemented on the quad remesh side ?