/
n-dimens
/
pascalabcnet
Обзор
Документация
Войти
/
n-dimens
/
pascalabcnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
3.0
TestSamples/CompilationSamples/gr2.pas
23 строки
395 B
Бондарев Иван
initial commit
14 май 2015, 22:35
14 май 2015, 22:35
e6e67c1
Код
Авторство
О чём код?
uses GraphABC,ABCObjects; var x,y: integer; p: Picture; i: integer; begin p := Picture.Create('computer.png'); p.Draw(10,10); p.Rectangle(20,20,30,30); p.Transparent := False; p.Draw(30,10); Brush.Color := clGray; // Rectangle(10,10,500,400); { for i:=1 to 5000 do begin Brush.Color := clRandom; Rectangle(10,10,500,400); end; TextOut(10,10,'�����');} end.