15 lines
411 B
Plaintext
15 lines
411 B
Plaintext
|
import "cards.asy" as cards;
|
||
|
import "numerals.asy" as numerals;
|
||
|
|
||
|
int suit = WHEELS;
|
||
|
int value = 1;
|
||
|
filldraw(card, white, black);
|
||
|
|
||
|
if (suit == CARDS && value == 1) {
|
||
|
// due to exponential growth, with the larger suit icon on the 1
|
||
|
// card, the endpoint of the recursion is a *lot* more visible
|
||
|
fill(recursive_card(value, suit, 6), evenodd+red);
|
||
|
} else {
|
||
|
fill(recursive_card(value, suit), evenodd+red);
|
||
|
}
|