|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0);
import graph;
xlimits( -3pi, 3pi);
xaxis(BottomTop(), Ticks(Label("$%.2f$",red), Step=2pi, step=pi/5, pTick=.8red));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0);
import graph;
xlimits( -3pi, 3pi);
xaxis(BottomTop(), Ticks(Label("$%.2f$",red), Step=2pi, step=pi/5, pTick=.8red));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0);
import graph;
xlimits( -3pi, 3pi);
ylimits( -5, 5);
yaxis( "y" , LeftRight(), RightTicks(pTick=.8red, ptick=lightgrey, extend=true));
xaxis( "x-value", BottomTop(), Ticks(Label("$%.2f$",red), Step=2pi, step=pi/5, pTick=.8red, ptick=lightgrey, extend=true));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0);
import graph;
xlimits( -100, 100);
ylimits( -50, 50);
defaultpen(overwrite(SuppressQuiet));
yaxis( "$y$" , Ticks(Label(.8red+fontsize(8),align=E)), p=.8red);
xaxis( "$x$", Ticks(Label(.8blue+fontsize(8))), p=.8blue);
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0);
import graph;
xlimits( -100, 100);
ylimits( -50, 50);
yaxis( "$y$" , Ticks(Label(currentpen+fontsize(8),align=E)));
xaxis( "$x$", Ticks(Label(currentpen+fontsize(8))));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0,false);
import graph;
xlimits( -100, 100);
ylimits( -50, 50);
yaxis( "y" , RightTicks());
xaxis( "x", Ticks());
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0,false);
import graph;
xlimits(0, 200);
ylimits(-50, 50);
yaxis( "y-value", Left);
xaxis( "x-value", Bottom(true));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
size(8cm,0,false);
import graph;
xlimits(0, 200);
ylimits(-50, 50);
yaxis("y-value");
xaxis("x-value");
|
|
| (Compiled with Asymptote version 1.92svn-r4817) |
import geometry; size(8cm);
inversion inv=inversion(1,(-4.5,0));
path g1=inv*line((-1,0),(-1,1)),
g2=inv*line((1,0),(1,1));
fill(g1,lightgrey); draw(g1,linewidth(bp));
unfill(g2); draw(g2,linewidth(bp));
int n=40;
for (int i=-n; i <= n; ++i) {
path g=inv*circle((point) (0,2*i),1);
fill(g,(1-abs(i)/n)*yellow);
draw(g,bp+red); draw(g,blue);
}
shipout(bbox(5mm,Fill(rgb(0.95,0.95,0.8))));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
unitsize(1cm);
import geometry;
point pA = (0,0);
point pB = (5,0);
point pC = (5,5);
dot(pA^^pB^^pC);
draw(pA--pB--pC--cycle);
distance(Label("$x \; \mathrm{cm}$",align=S),pA,pB,3mm);
distance(Label("$y \; \mathrm{cm}$",align=E),pB,pC,3mm);
distance(Label("$z \; \mathrm{cm}$",align=I*dir(pA--pC)),pA,pC,-3mm);
shipout(bbox(xmargin=1mm,invisible));
|
|
| (Compiled with Asymptote version 2.14svn-r5318) |
import geometry;
size(8cm);
// currentcoordsys=cartesiansystem((2,1),i=(1,0.5),j=(-0.25,.75));
// show(currentcoordsys);
dotfactor *=1.5;
triangle t=triangleabc(3,4,5);
drawline(t, linewidth(bp));
label(t, alignFactor=3);
line l=line((-1,-2), (1,0.5));
draw(l, 0.8*red);
/* View the definition of point[] intersectionpoints(triangle,line,bool) */
dot(intersectionpoints(t,l), 0.8*red);
circle C=2*circle(t);
draw(C, 0.8*blue);
/* View the definition of point[] intersectionpoints(triangle,conic,bool) */
dot(intersectionpoints(t,C, true), 0.8*blue);
