fixed a bug in the PolygonParser

This commit is contained in:
hneemann 2018-11-26 21:52:14 +01:00
parent 3c92eb2d7b
commit a119caeba3

View File

@ -36,6 +36,6 @@ public class PolygonTest extends TestCase {
public void testBezierPath() {
checkBezier(Polygon.createFromPath("m 10,10 C 20 10 20 20 10 20 z"));
checkBezier(Polygon.createFromPath("m 10,10 c 10 0 0 10 -10 0 z"));
checkBezier(Polygon.createFromPath("m 10,10 c 10 0 10 10 0 10 z"));
}
}