diff options
Diffstat (limited to 'Build/source/utils/asymptote/examples/electromagnetic.asy')
-rw-r--r-- | Build/source/utils/asymptote/examples/electromagnetic.asy | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Build/source/utils/asymptote/examples/electromagnetic.asy b/Build/source/utils/asymptote/examples/electromagnetic.asy index 058c7c5c574..d229f76b748 100644 --- a/Build/source/utils/asymptote/examples/electromagnetic.asy +++ b/Build/source/utils/asymptote/examples/electromagnetic.asy @@ -33,15 +33,15 @@ picture q=secondaryX(new void(picture p) { scale(p,LogLeft,Linear); xlimits(p,lambda(fmax),lambda(fmin)); ylimits(p,0,1); - xaxis(p,Label("\nano\metre",1),Top,LeftTicks(DefaultLogFormat,n=10)); + xaxis(p,Label("\nano\metre",1,0.01N),Top,LeftTicks(DefaultLogFormat,n=10)); }); add(q,above=true); margin margin=PenMargin(0,0); -draw("radio",Scale((10,1))--Scale((5e12,1)),N,Arrow); -draw("infrared",Scale((1e12,1.5))--Scale(shift(0,1.5)*ir),Arrows,margin); -draw("UV",Scale(shift(0,1.5)*uv)--Scale((1e17,1.5)),Arrows,margin); -draw("x-rays",Scale((1e16,1))--Scale((1e21,1)),N,Arrows); -draw("$\gamma$-rays",Scale((fmax,1.5))--Scale((2e18,1.5)),Arrow); +draw("radio",Scale((10,1))--Scale((5e12,1)),S,Arrow); +draw("infrared",Scale((1e12,1.75))--Scale(shift(0,1.75)*ir),LeftSide,Arrows,margin); +draw("UV",Scale(shift(0,1.75)*uv)--Scale((1e17,1.76)),LeftSide,Arrows,margin); +draw("x-rays",Scale((1e16,1))--Scale((1e21,1)),RightSide,Arrows); +draw("$\gamma$-rays",Scale((fmax,1.75))--Scale((2e18,1.75)),Arrow); |