wrights-deck/numerals.asy

23 lines
608 B
Plaintext

import "scaling.asy" as scaling;
path numerals[][] = { {} };
path onearc = arc((0,height*0.4), height*0.1, 0, 180);
path[] one = { onearc--(rotate(180)*onearc)--cycle };
numerals.push(one);
path[] two = { shift(width/4, 0)*one[0], shift(-width/4, 0)*one[0] };
numerals.push(two);
path[] three;
numerals.push(three);
path[] four;
numerals.push(four);
path[] five = { (0,-height*0.3)---(width*0.45,height/2)..(width/2, height*0.45)---(height*0.1, -height*0.45)..(-height*0.1, -height*0.45)---(-width/2, height*0.45)..(-width*0.45,height/2)--cycle };
numerals.push(five);
path[] six;
numerals.push(six);