mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 16:49:20 +02:00
+ implementation of DoEllipse
This commit is contained in:
parent
f6e456268f
commit
7f408f009d
@ -227,7 +227,19 @@ begin //TODO
|
|||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFPPixelCanvas.DoEllipse (const Bounds:TRect);
|
procedure TFPPixelCanvas.DoEllipse (const Bounds:TRect);
|
||||||
|
var
|
||||||
|
Cx,Cy,Rx,Ry,phi:Integer;
|
||||||
begin //TODO: how to find center points and radius from bounds ?
|
begin //TODO: how to find center points and radius from bounds ?
|
||||||
|
with Bounds do
|
||||||
|
begin
|
||||||
|
Cx:=(Right+Left) shr 2;
|
||||||
|
Cy:=(Bottom+Top) shr 2;
|
||||||
|
Rx:=Abs(Right-Left) shr 2;
|
||||||
|
Ry:=Abs(Bottom-Top) shr 2;
|
||||||
|
end;
|
||||||
|
MoveTo(Cx+Rx,Cy);
|
||||||
|
for phi:=1 to 360 do
|
||||||
|
LineTo(Cx+Round(Rx*Cos(phi*Pi/180)),Cy+Round(Ry*Sin(phi*Pi/180)));
|
||||||
end;
|
end;
|
||||||
|
|
||||||
procedure TFPPixelCanvas.DoPolygonFill (const points:array of TPoint);
|
procedure TFPPixelCanvas.DoPolygonFill (const points:array of TPoint);
|
||||||
|
Loading…
Reference in New Issue
Block a user