if you have in your compiler , graph.tpu , it would be easier for you to draw in pascal , you have the luck , because i had worked in pascal during two year .
all you have to do is only to know which instruction is uesd , for any problem for insrance , if you wanna make a circle
uses graph;
const center=40;
ray=100;
var cd,modegraph : integer;
begin
{ init }
card:=cd;
initgraph(card, modegraph,'');
circle(getmaxx div 2, getmaxy div 2, ray);
readln;
end.
there many instructions like that , if you have any problem contact me in
megamatrix@engineer.com
and for windows you can use
uses graph;
var cd,modegraph : integer;
begin
{ init }
card:=cd;
initgraph(card, modegraph,'');
bar(45,85,75,25);
readln;
end.
good luck
Main Topics
Browse All Topics





by: BeerkerelPosted on 2003-03-20 at 06:48:46ID: 8174060
You'll need the graph library...
Is long time ago for me, worked with dos but you need the BGI include...