[ query @ 08.05.2005. 09:57 ] @
Treba da uradim par zadataka i ako koristim npr. funkcije Forwrd, TurnRight kaze da ih ne prepoznaje.
Dali moram ovdje da nesto instaliram?
npr.
Code:
procedure Boom (iDiepte: Integer; fLengte, fFactor: Extended;
                iHoek: Integer);
begin
  if iDiepte > 0
  then begin
    Forwrd (fLengte);
    TurnLeft (iHoek);
    Boom (iDiepte – 1, fLengte * fFactor, fFactor, iHoek);
    TurnRight (2 * iHoek);
    Boom (iDiepte – 1, fLengte * fFactor, fFactor, iHoek);
    TurnLeft (iHoek);
    Back (fLengte)
  end
end;


Error:

[Error] untBoom.pas(12): Undeclared identifier: 'Forwrd'
[Error] untBoom.pas(13): Undeclared identifier: 'TurnLeft'
[Error] untBoom.pas(14): Illegal character in input file: '–' ($96)
[Error] untBoom.pas(15): Undeclared identifier: 'TurnRight'
[Error] untBoom.pas(16): Illegal character in input file: '–' ($96)
[Error] untBoom.pas(18): Undeclared identifier: 'Back'
[ query @ 08.05.2005. 10:46 ] @
Nasla sam da trebam jos extra instalirati FXTURTLE.DCU. ;)

[ query @ 11.05.2005. 18:07 ] @
Mogu li se negdje na net-u skinuti primjeri sa koristenjem Turtle Graphics?
npr. pravljenje drveta ili spirale???

Unaprijed hvala.
[ Rapaic Rajko @ 19.05.2005. 07:38 ] @
Za net ne znam, ali znam za staru knjigu 'Programski jezik Logo' ili tako nesto. U njoj ima bas lepih primera crtanja kornjacom.

Rajko