mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 18:29:27 +02:00
amunits/examples: less pastoc usage
git-svn-id: trunk@31014 -
This commit is contained in:
parent
b1147ba1b7
commit
339720e06a
@ -35,7 +35,7 @@ Program Bezier;
|
||||
nils.sjoholm@mailbox.swipnet.se
|
||||
}
|
||||
|
||||
uses exec, intuition, agraphics, utility,pastoc, systemvartags;
|
||||
uses exec, intuition, agraphics, utility, systemvartags;
|
||||
|
||||
type
|
||||
PointRec = packed Record
|
||||
@ -249,9 +249,9 @@ begin
|
||||
|
||||
rp := w^.RPort;
|
||||
GfxMove(rp, 252, 30);
|
||||
GfxText(rp, pas2c('Enter points by pressing the left mouse button'), 46);
|
||||
GfxText(rp, 'Enter points by pressing the left mouse button', 46);
|
||||
GfxMove(rp, 252, 40);
|
||||
GfxText(rp, pas2c('Double click on the last point to begin drawing'), 47);
|
||||
GfxText(rp, 'Double click on the last point to begin drawing', 47);
|
||||
repeat
|
||||
GetPoints; { Both these routines will quit if }
|
||||
DrawBezier; { the window is closed. }
|
||||
|
@ -1,4 +1,4 @@
|
||||
Program Bezier;
|
||||
Program Bezier2;
|
||||
|
||||
|
||||
{ This program draws Bezier curves in the slow, simple, recursive
|
||||
@ -26,7 +26,7 @@ Program Bezier;
|
||||
nils.sjoholm@mailbox.swipnet.se
|
||||
}
|
||||
|
||||
uses exec, intuition, agraphics, utility, pastoc, systemvartags;
|
||||
uses exec, intuition, agraphics, utility, systemvartags;
|
||||
|
||||
type
|
||||
PointRec = Record
|
||||
|
Loading…
Reference in New Issue
Block a user