blob: 8bd67e09112d3206f822a30f5b1bfc7c13fa1def (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
pen textpen=basealign;
pair align=Align;
// Compatibility routines for the pstoedit (version 3.43 or later) backend.
void gsave(picture pic=currentpicture)
{
pic.add(new void (frame f, transform) {
gsave(f);
},true);
}
void grestore(picture pic=currentpicture)
{
pic.add(new void (frame f, transform) {
grestore(f);
},true);
}
|