pascalabcnet/TestSamples/FormatterTests/input/GraphABCTest.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

20 lines
389 B
ObjectPascal

// Čëëţńňđŕöč˙ ďđîńňĺéřčő âîçěîćíîńňĺé GraphABC
uses GraphABC;
begin
Coordinate.Origin := Window.Center;
Coordinate.SetMathematic;
Brush.Color := Color.LightSkyBlue;
while True do
begin
LockDrawing;
ClearWindow;
Ellipse(-120,-70,120,70);
Line(0,0,200,0);
Line(0,0,0,200);
Redraw;
Coordinate.Angle := Coordinate.Angle + 1;
Sleep(100);
end;
end.