Fichier tegel1.mp (figure 1) — Modifié le 2 Mars 2005 à 00 h 32

tegel1.mp (figure 1)
Source

% lsystem TEGEL1.LS -- Thu Feb 13 00:54:56 CET 2003
%% Fichier de paramètres : TEGEL1.LS
% #       Tegel-moza‹ek
%
% ratio   3
% seed    F - F - F - F
% rule    F -> F F [ - F - F - F ] F
% delta   90
% theta   135
% leng    332
% iter    4
% x       0
% y       -235
% blue    1
% green   .7
% red     0
%% FIN du fichier

input tortue;

vardef trace(expr a,b) =
    draw a--b withpen pencircle scaled 1pt
              withcolor (0,.7,1);
enddef;

vardef deplace(expr a,b) =
enddef;

vardef F(expr n,m) =
   if m>0:
        F(n,m-1);
        F(n,m-1);
        blop(n,n+1);
        tourne(n+1,-90);
        F(n+1,m-1);
        tourne(n+1,-90);
        F(n+1,m-1);
        tourne(n+1,-90);
        F(n+1,m-1);
        F(n,m-1);
   else:
        avance(n,longueur,trace);
   fi
enddef;

vardef axiome(expr n,m) =
        F(n,m);
        tourne(n,-90);
        F(n,m);
        tourne(n,-90);
        F(n,m);
        tourne(n,-90);
        F(n,m);
enddef;


beginfig(1);
    longueur = 332 / ( 3 ** 4 );
    tortue(1,0,-235,135,1);
    axiome(1,4);
endfig;
end