From ad4b24d415234a73cc4bfc887cf8893cf67608d4 Mon Sep 17 00:00:00 2001 From: xenofem Date: Thu, 28 Jul 2022 18:20:18 -0400 Subject: [PATCH] remove single-card from repo since we keep changing it without wanting to commit, it's just for local testing --- single-card.asy | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 single-card.asy diff --git a/single-card.asy b/single-card.asy deleted file mode 100644 index ca85bb0..0000000 --- a/single-card.asy +++ /dev/null @@ -1,22 +0,0 @@ -import "cards.asy" as cards; -import "numerals.asy" as numerals; -import "suits.asy" as suits; - -int suit = PUPPETS; -int value = 5; -filldraw(card, white, black); - -currentpen = evenodd+suit_colors[suit]; - -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)); -} else if (suit == CARDS && value > 6) { - // conversely, face cards don't need as much recursion depth - // because the only icons present are significantly smaller - fill(recursive_card(value, suit, 3)); -} else { - //fill(recursive_card(value, CARDS, 1), evenodd+lightgrey); - fill(recursive_card(value, suit); -}