summaryrefslogtreecommitdiff
path: root/graphics/asymptote/base/plain_markers.asy
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/base/plain_markers.asy')
-rw-r--r--graphics/asymptote/base/plain_markers.asy4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/base/plain_markers.asy b/graphics/asymptote/base/plain_markers.asy
index c6109d4e6c..bcbe8a57be 100644
--- a/graphics/asymptote/base/plain_markers.asy
+++ b/graphics/asymptote/base/plain_markers.asy
@@ -44,7 +44,7 @@ path cross(int n, bool round=true, real r=0)
path plus=rotate(45)*cross(4);
path diamond=rotate(45)*polygon(4);
-typedef void markroutine(picture pic=currentpicture, frame f, path g);
+using markroutine=void(picture pic=currentpicture, frame f, path g);
// On picture pic, add frame f about every node of path g.
void marknodes(picture pic=currentpicture, frame f, path g) {
@@ -309,7 +309,7 @@ pair[] pairs(real[] x, real[] y)
return sequence(new pair(int i) {return (x[i],y[i]);},x.length);
}
-filltype dotfilltype = Fill;
+filltype dotfilltype=Fill;
void dot(frame f, pair z, pen p=currentpen, filltype filltype=dotfilltype)
{