charts.lines: add tests for fix-right-chunk, fix implementation

char-rename
Alexander Iljin 2017-01-19 13:28:49 +03:00 committed by John Benediktsson
parent 37ec09dd7a
commit 79da6e1442
2 changed files with 33 additions and 1 deletions

View File

@ -79,6 +79,38 @@ IN: charts.lines.tests
-3 3 fix-left-chunk
] unit-test
! fix-right-chunk: y coord = top limit
{
{ { 5 3 } { 6 0 } }
} [
{ { -6 6 } { -3 4 } } { { 5 3 } { 6 0 } }
-3 3 fix-right-chunk
] unit-test
! fix-right-chunk: y coord = bottom limit
{
{ { 5 -3 } { 6 0 } }
} [
{ { -6 -6 } { -3 -4 } } { { 5 -3 } { 6 0 } }
-3 3 fix-right-chunk
] unit-test
! fix-right-chunk: going upwards
{
{ { -3 -3 } { -2 -2 } { 6 0 } }
} [
{ { -6 -6 } { -4 -4 } } { { -2 -2 } { 6 0 } }
-3 3 fix-right-chunk
] unit-test
! fix-right-chunk: going downwards
{
{ { -3 3 } { -2 2 } { 6 0 } }
} [
{ { -6 6 } { -4 4 } } { { -2 2 } { 6 0 } }
-3 3 fix-right-chunk
] unit-test
! tight bounds
{
{ { { 0 0 } { 0 1 } { 1 2 } { 1 3 } { 2 5 } } }

View File

@ -154,7 +154,7 @@ ALIAS: y second
left-point right-point calc-line-slope
y-coord left-point calc-point-y
] if
right rest-slice swap suffix
right swap prefix
] if ;
: first-point ( chunks -- first-point ) first first ;