From: Krzysztof K. <twe...@gm...> - 2015-03-27 19:48:22
|
Every method that modifies a Path has an optional argument called "stitching" that determines whether additional segments are added to make the path continuous. By default, stitching is not used. If there are any discontinuities, calling some of Path will cause an exception to be thrown, which in most cases means a crash. I want to make stitching mandatory. Since in some cases you want to be sure that no stitching happens in your code, there will be an extra boolean member variable. When set to true, it will throw an exception whenever you try to insert a discontinuity into the path. Is everyone OK with this idea? Regards, Krzysztof |