pascalabcnet/TestSuite/CompilationSamples/Gr5.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

20 lines
407 B
ObjectPascal

// Ăđŕôčęŕ. Pie
uses GraphABC;
const r = 200;
begin
Window.Title := 'Ęđóăîâŕ˙ ăčńňîăđŕěěŕ';
var x := Window.Center.X;
var y := Window.Center.Y;
Brush.Color := clRandom;
Pie(x,y,r,0,30);
Brush.Color := clRandom;
Pie(x,y,r,30,110);
Brush.Color := clRandom;
Pie(x,y,r,110,160);
Brush.Color := clRandom;
Pie(x,y,r,160,280);
Brush.Color := clRandom;
Pie(x,y,r,280,360);
end.