From: W. Trevor King Date: Fri, 28 Jun 2013 17:07:33 +0000 (-0400) Subject: figures/v-dep: Remove UnFill from plot legend addition X-Git-Tag: v1.0^0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;p=thesis.git figures/v-dep: Remove UnFill from plot legend addition It was blanking the plots. --- diff --git a/src/figures/v-dep/v-dep-sd.asy b/src/figures/v-dep/v-dep-sd.asy index 5de276e..d62ad40 100644 --- a/src/figures/v-dep/v-dep-sd.asy +++ b/src/figures/v-dep/v-dep-sd.asy @@ -39,7 +39,7 @@ xequals(pic, x=1e-6*xscale, p=dashed); xaxis(pic, sLabel("Pulling speed (nm/s)"), BottomTop, LeftTicks); yaxis(pic, sLabel("Unfolding force (pN)"), LeftRight, RightTicks); -add(pic, legend(pic), point(pic, E), 20E, UnFill); +add(pic, legend(pic), point(pic, E), 20E); picture hist_picture(string datafile, real xmin=-infinity, real xmax=infinity, diff --git a/src/figures/v-dep/v-dep.asy b/src/figures/v-dep/v-dep.asy index a91fc1d..9170da2 100644 --- a/src/figures/v-dep/v-dep.asy +++ b/src/figures/v-dep/v-dep.asy @@ -35,4 +35,4 @@ label(sLabel("Pulling speed dependence"), point(N), N); xaxis(sLabel("Pulling speed (nm/s)"), BottomTop, LeftTicks); yaxis(sLabel("Unfolding force (pN)"), LeftRight, RightTicks); -add(legend(), point(E), 20E, UnFill); +add(legend(), point(E), 20E);