-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.syff
More file actions
104 lines (73 loc) · 1.73 KB
/
demo.syff
File metadata and controls
104 lines (73 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/* Initial Letters */
Π { out: "P_i"; }
Ε { out: "E_psilon"; }
Λ { out: "L_ambda"; }
Μ { out: "M_u"; }
Ο { out: "O_micron"; }
Β { out: "B_eta"; }
Л { out: "uni041B_"; }
J { out: "J_"; }
S { out: "S_"; }
З { out: "uni0417"; }
Ч { out: "uni0427"; }
Y { out: "Y_"; }
Ш [ Π = "uni0428, 0428" ] {
transform: fontex("width","right", 100, 0);
transform: mirrorX();
/*transform: mirrorY();*/
}
Щ [ Ш = "uni0429, 0429" ] {
transform: mirrorX();
}
Ц [ Π = "uni0426, 0426" ] {
transform: mirrorX();
}
E [ Ε = "E, 0045" ] {}
F [ E = "F, 0046" ] {
partial: keep("hand","arm","tie","leg");
partial: remove("leg");
}
Γ [ F = "Gamma, 0393" ] {
partial: remove("tie");
}
Τ [ Γ = "Tau, 03A4" ] {
partial: remove("arm");
partial: copy("hand","hand.1");
partial: get("Y","leg","leg_t");
transform: translate("hand.1", -100, 10);
transform: mirrorX("hand.1");
/*transform: mirrorY("hand.1");*/
}
/*
A [ B = "name, unicode" ] {}
A [ B = "name, unicode" ] {
out: "whatever";
}
A [ B = "name, unicode" ] {
transform: translate("partial_name", 0, 2);
transform: translate(0, 1);
}
A [ B = "name, unicode" ] {
transform: mirrorX();
transform: mirrorX( "hand_copy" );
transform: mirrorY();
transform: mirrorY( "hand_copy" );
}
A [ B = "name, unicode" ] {
transform: fontex("type","position", 0, -1);
}
A [ B = "name, unicode" ] {
partial: keep("partial_a", "partial_b");
partial: remove("partial_b");
partial: get("Π","partial_a","partial_a_rename");
partial: copy("partial_a", "partial_b");
}
@instance (bold) {
A [ B = "name, unicode" ] {
partial: keep("partial_a", "partial_b");
partial: remove("partial_b");
partial: get("Π","partial_a","partial_a_rename");
partial: copy("partial_a", "partial_b");
}
}
*/