Hi experts,
I got an issue that when Path of Views::FilledPath contains points of big value.
Now that FilledPath's bounds <0, 0, 300, 300>. Path is initialized like,
Path.SetMaxNoOfSubPaths(1);
Path.InitSubPath(0, 100);
Path.Begin(0, 150, 150);
Path.AddLine(0, 18000, -8000);
Path.AddLine(0, 13000, 64000);
Path.Close(0);
The result is not quite as expected.
My question is, is there any size limit of Path coordinates' range / bounding rect range?
Thanks!