Janilabo

Untitled

Mar 30th, 2013
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Pascal 0.19 KB | None | 0 0
  1. var
  2.   bmp: TSCARBitmap;
  3.  
  4. begin
  5.   bmp := TSCARBitmap.Create('');
  6.   bmp.SetSize(500, 500);
  7.   bmp.SetPixels(TPAFromCircle(Point(250, 250), 100), clRed);
  8.   DebugBitmap(bmp);
  9.   bmp.Free;
  10. end.
Advertisement
Add Comment
Please, Sign In to add comment