add blank spaces for face card 'numerals'
This commit is contained in:
parent
9288c2d8bb
commit
b935b2190b
18
numerals.asy
18
numerals.asy
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue