git init
or
| /starpath { % n r1 r2 x y | |
| matrix currentmatrix 6 1 roll % [] n r1 r2 x y | |
| translate % [] n r1 r2 | |
| 10 dict begin {/r2 /r1 /n} {exch def}forall % [] | |
| /da 360 n div def | |
| r2 0 moveto | |
| n { |
| package nz.kiwi.chris.j7gs.types; | |
| import com.google.common.base.Preconditions; | |
| public class GSString implements Comparable<GSString> { | |
| private final String value; | |
| public GSString(String value) { | |
| this.value = value; | |
| } |