You may view all the posts of the category "trembling.asy"
|
One can use the routine tremble in order to deform a specific path. |
| (Compiled with Asymptote version 1.87svn-r4652) |
import trembling;
size(8cm);
path cle=unitcircle;
/* View the definition of path tremble(path,real,real,real,real) */
path tcle=tremble(cle,frequency=0.25,random=1);
draw(tcle);
path tri=(-1,-0.5)--(1,-0.5)--(0,0.75)--cycle;
path ttri=tremble(tri,frequency=0.5,random=1.5);
draw(ttri);
shipout(bbox(3mm,invisible));







