/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
TestSuite/CompilationSamples/Gr5.pas
20 строк
433 B
Artem Pelenitsyn
change encoding for all *.pas and *.cs files: cp1251 -> utf-8
28 дек 2015, 14:25
28 дек 2015, 14:25
49378a6
Код
Авторство
О чём код?
// Графика. 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.