add blank spaces for face card 'numerals'

main
xenofem 2022-07-26 20:17:17 -04:00
parent 9288c2d8bb
commit b935b2190b
1 changed files with 18 additions and 0 deletions

View File

@ -1,5 +1,10 @@
import "scaling.asy" as scaling;
int TRAVELER = 7;
int KNIGHT = 8;
int WIZARD = 9;
int NOBLE = 10;
path numerals[][] = { {} };
path onearc = arc((0,height*0.4), height*0.1, 0, 180);
@ -20,3 +25,16 @@ numerals.push(five);
path[] six;
numerals.push(six);
path[] traveler;
numerals.push(traveler);
path[] knight;
numerals.push(knight);
path[] wizard;
numerals.push(wizard);
// Is this even the same across suits? or is it like, *C*ount of Cards, *Q*ueen of Puppets, ??? of Bread, etc?
path[] noble;
numerals.push(noble);