Subversion Repositories AndroidProjects

Rev

Rev 463 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
421 chris 1
Define CharList
2
 ( '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', 'c', 'C');
3
 
4
Define WidthList
5
 (   5,   6,   6,   6,   6,   6,  6,   6,   6,   6,   27,   23);
6
 
7
Define RectList
8
 ( (   1,  0,  5,  7), (  7,  0,   6,  7), (  14,  0,  6,  7), (  21,  0,  6,  7),
9
   (  28,  0,  6,  7), (  35,  0,  6,  7), (  42,  0,  6,  7), (  49,  0,  6,  7),
10
   (  56,  0,  6,  7), (  63,  0,  6,  7), (  70,  0,  27,  7), (  98,  0,  23,  7));
11
 
12
Define OffsetList
13
 ( (-1, 0), ( 1, 0), ( 1, 0), ( 1, 0), ( 1, 0), ( 1, 0), ( 1, 0), ( 1, 0),
14
   ( 1, 0), ( 0, 0), ( 1, 0), ( 1, 0));
15
 
16
CreateLayer               Main;
17
LayerSetImage             Main 'scoring';
18
LayerSetAscent            Main 8;
19
LayerSetCharWidths        Main CharList WidthList;
20
LayerSetCharWidths        Main (' ') (6);
21
LayerSetImageMap          Main CharList RectList;
22
LayerSetCharOffsets       Main CharList OffsetList;
23
LayerSetAscentPadding     Main 0;
24
LayerSetLineSpacingOffset Main 0;
25
LayerSetPointSize         Main 10;
26
 
27
SetDefaultPointSize  8;