From ecb74bf8c4a200447cdb392bb62fc601b84d7d2b Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Fri, 14 Jun 2013 07:21:32 -0400 Subject: [PATCH] figures/asy/wtk_graph.asy: Add mcross for stepper graphs A marker in the shape of a small cross. With this marker, there's less overlap between successive points that trend in horizontal or vertical directions. --- src/figures/asy/wtk_graph.asy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/figures/asy/wtk_graph.asy b/src/figures/asy/wtk_graph.asy index 8397d49..c09733a 100644 --- a/src/figures/asy/wtk_graph.asy +++ b/src/figures/asy/wtk_graph.asy @@ -218,6 +218,8 @@ m1 = scale(3mm)*shift(-.5,-.33)*m1; path m8=scale(2mm)*shift(-.5,-.5)*unitsquare; path m30=scale(1.5mm)*unitcircle; path mdot=scale(0.2pt)*unitcircle; +path mcross = (0.5,0)--(0.5,1)--(.5,.5)--(0,0.5)--(1,0.5); +mcross = scale(2mm)*shift(-0.5, -0.5)*mcross; markroutine marksize(string file="datafile", pen p=red, path mpath=scale(0.8mm)*unitcircle, real size=1) { return new void(picture pic=currentpicture, frame f, path g) { -- 2.26.2