You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi.First Kudos for this port.However I see the C# version outputs a numerical data that little different from the same when done using C version of this lib.While the end results still looks as expected I am really curious to know if you are aware of this fact ?
Here for example a set of 2 polys
ContourVertex v1 = new ContourVertex();
v1.Position.X = 100;
v1.Position.Y = 100;
v1.Data = Color.Aqua;
ContourVertex v2 = new ContourVertex();
v2.Position.X = 400;
v2.Position.Y = 100;
v2.Data = Color.Aqua;
ContourVertex v3 = new ContourVertex();
v3.Position.X = 400;
v3.Position.Y = 500;
v3.Data = Color.Aqua;
ContourVertex v4 = new ContourVertex();
v4.Position.X = 100;
v4.Position.Y = 500;
v4.Data = Color.Aqua;
Hi.First Kudos for this port.However I see the C# version outputs a numerical data that little different from the same when done using C version of this lib.While the end results still looks as expected I am really curious to know if you are aware of this fact ?
Here for example a set of 2 polys
ContourVertex v1 = new ContourVertex();
v1.Position.X = 100;
v1.Position.Y = 100;
v1.Data = Color.Aqua;
ContourVertex v2 = new ContourVertex();
v2.Position.X = 400;
v2.Position.Y = 100;
v2.Data = Color.Aqua;
ContourVertex v3 = new ContourVertex();
v3.Position.X = 400;
v3.Position.Y = 500;
v3.Data = Color.Aqua;
ContourVertex v4 = new ContourVertex();
v4.Position.X = 100;
v4.Position.Y = 500;
v4.Data = Color.Aqua;
Try running it in C and C# , the output indices and vertices are not exactly the same .
Thanks.
The text was updated successfully, but these errors were encountered: