summaryrefslogtreecommitdiff
path: root/graphics/asymptote/drawgroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/drawgroup.h')
-rw-r--r--graphics/asymptote/drawgroup.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/graphics/asymptote/drawgroup.h b/graphics/asymptote/drawgroup.h
index 22aa858a96..5dffe5a35f 100644
--- a/graphics/asymptote/drawgroup.h
+++ b/graphics/asymptote/drawgroup.h
@@ -18,6 +18,11 @@ public:
virtual ~drawBegin() {}
+ bool draw(psfile *out) {
+ out->lastpen=camp::pen(camp::initialpen);
+ return true;
+ }
+
bool begingroup() {return true;}
};
@@ -27,6 +32,11 @@ public:
virtual ~drawEnd() {}
+ bool draw(psfile *out) {
+ out->lastpen=camp::pen(camp::initialpen);
+ return true;
+ }
+
bool endgroup() {return true;}
};