Metadata for svg, sequences.squish, math.affine-transforms
parent
aad17e43ef
commit
b06ff3750d
|
@ -1,3 +1,4 @@
|
|||
! (c)2009 Joe Groff, see BSD license
|
||||
USING: arrays kernel literals tools.test math math.affine-transforms
|
||||
math.constants math.functions ;
|
||||
IN: math.affine-transforms.tests
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
! (c)2009 Joe Groff, see BSD license
|
||||
USING: accessors arrays combinators combinators.short-circuit kernel math math.vectors
|
||||
math.functions sequences ;
|
||||
IN: math.affine-transforms
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Joe Groff
|
|
@ -0,0 +1 @@
|
|||
Affine transforms for two-dimensional vectors
|
|
@ -0,0 +1 @@
|
|||
math
|
|
@ -0,0 +1,19 @@
|
|||
USING: arrays kernel sequences sequences.cartesian-product tools.test ;
|
||||
IN: sequences.product.tests
|
||||
|
||||
[
|
||||
{ { 0 "a" } { 1 "a" } { 2 "a" } { 0 "b" } { 1 "b" } { 2 "b" } }
|
||||
] [ { { 0 1 2 } { "a" "b" } } [ ] cartesian-product-map ] unit-test
|
||||
|
||||
[
|
||||
{
|
||||
{ 0 "a" t } { 1 "a" t } { 2 "a" t } { 0 "b" t } { 1 "b" t } { 2 "b" t }
|
||||
{ 0 "a" f } { 1 "a" f } { 2 "a" f } { 0 "b" f } { 1 "b" f } { 2 "b" f }
|
||||
}
|
||||
] [ { { 0 1 2 } { "a" "b" } { t f } } [ ] cartesian-product-map ] unit-test
|
||||
|
||||
[
|
||||
{ "012012" "aaabbb" }
|
||||
] [ { { "0" "1" "2" } { "a" "b" } } [ [ first2 ] bi* [ append ] bi@ 2array ] cartesian-product-each ] unit-test
|
||||
|
||||
|
Binary file not shown.
|
@ -0,0 +1,2 @@
|
|||
Slava Pestov
|
||||
Joe Groff
|
|
@ -0,0 +1,8 @@
|
|||
! (c)2009 Slava Pestov & Joe Groff, see BSD license
|
||||
USING: kernel sequences sequences.squish strings tools.test ;
|
||||
IN: sequences.squish.tests
|
||||
|
||||
[ { { 1 2 3 } { 4 } { 5 6 } } ] [
|
||||
V{ { 1 2 3 } V{ { 4 } { 5 6 } } }
|
||||
[ vector? ] { } squish ;
|
||||
] unit-test
|
|
@ -1,3 +1,4 @@
|
|||
! (c)2009 Slava Pestov & Joe Groff, see BSD license
|
||||
USING: combinators.short-circuit fry make math kernel sequences ;
|
||||
IN: sequences.squish
|
||||
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Sequence flattening with parameterized descent predicate
|
|
@ -0,0 +1 @@
|
|||
sequences
|
|
@ -0,0 +1 @@
|
|||
Joe Groff
|
|
@ -0,0 +1 @@
|
|||
Parsers for SVG data
|
|
@ -1,3 +1,4 @@
|
|||
! (c)2009 Joe Groff, see BSD license
|
||||
USING: arrays literals math math.affine-transforms math.functions multiline
|
||||
svg tools.test ;
|
||||
IN: svg.tests
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
xml
|
||||
graphics
|
||||
svg
|
Loading…
Reference in New Issue