summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2019-04-14 20:27:59 (GMT)
committerfvogel <fvogelnew1@free.fr>2019-04-14 20:27:59 (GMT)
commit991a7c71462d9b4a7106dff6b7c72d9aa8ac28fa (patch)
tree063c60377df073256339611c605dfd6c0e643132 /tests
parentf3e5e6b4890075ebe0e19bc7c0ac0d1c4d822e05 (diff)
parent6d78bbb85627dd66947ea2af0bc8d2a796cc0c58 (diff)
downloadtk-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.test18
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]