summaryrefslogtreecommitdiff
path: root/graphics/asymptote/base/pstoedit.asy
blob: 7baccd3ed693bc9be73b5f061719ff7f9e93636b (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);
}