diff options
author | fvogel <fvogelnew1@free.fr> | 2019-04-14 20:27:59 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2019-04-14 20:27:59 (GMT) |
commit | 991a7c71462d9b4a7106dff6b7c72d9aa8ac28fa (patch) | |
tree | 063c60377df073256339611c605dfd6c0e643132 /tests | |
parent | f3e5e6b4890075ebe0e19bc7c0ac0d1c4d822e05 (diff) | |
parent | 6d78bbb85627dd66947ea2af0bc8d2a796cc0c58 (diff) | |
download | tk-991a7c71462d9b4a7106dff6b7c72d9aa8ac28fa.zip tk-991a7c71462d9b4a7106dff6b7c72d9aa8ac28fa.tar.gz tk-991a7c71462d9b4a7106dff6b7c72d9aa8ac28fa.tar.bz2 |
Fix [6ce6e74635]: TIP415 implementation does not handle small arcs correctly
Diffstat (limited to 'tests')
-rw-r--r-- | tests/canvas.test | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/canvas.test b/tests/canvas.test index 100fea1..e740fc8 100644 --- a/tests/canvas.test +++ b/tests/canvas.test @@ -1040,6 +1040,24 @@ test canvas-20.3 {canvas image with subsample and zoom} -setup { image delete testimage } -result 1 +test canvas-21.1 {canvas very small arc} -setup { + catch {destroy .c} + canvas .c +} -body { + # no Inf or NaN must be generated even for very small arcs + .c create arc 0 100 0 100 -height 100 -style arc -outline "" -tags arc1 + set arcBox [.c bbox arc1] + .c create arc 0 100 0 100 -height 100 -style arc -outline blue -tags arc2 + set outlinedArcBox [.c bbox arc2] + set coords [.c coords arc1] + set start [.c itemcget arc1 -start] + set extent [.c itemcget arc1 -extent] + set width [.c itemcget arc1 -width] + set height [.c itemcget arc1 -height] + list $arcBox $outlinedArcBox $coords $start $extent $width $height +} -result {{-1 99 1 101} {-2 98 2 102} {0.0 100.0 0.0 100.0} 0.0 0.0 1.0 0.0} + + destroy .c test canvas-21.1 {canvas rotate} -setup { pack [canvas .c] |