Registriert seit: 15. Jun 2010
Ort: Augsburg Bayern Süddeutschland
3.470 Beiträge
Delphi XE3 Enterprise
|
AW: Halbkreis zwischen zwei Punkten zeichnen.
14. Mär 2011, 15:39
suchst Du sowas?
Delphi-Quellcode:
var
px1,py1,px2,py2, ipx1, ipy1, ipx2,ipy2:Integer;
begin
px1 := 100;
py1 := 100;
px2 := 300;
py2 := 300;
ipx1 := px1 + 40;
ipy1 := py1 + 40;
ipx2 := px2 - 40;
ipy2 := py2 - 40;
Canvas.Arc(px1,py1,px2,py2, ipx2,ipy2, ipx1, ipy1);
end;
Thomas Wassermann H₂♂ Das Problem steckt meistens zwischen den Ohren
DRY DRY KISS
H₂♂ (wenn bei meinen Snipplets nichts anderes angegeben ist Lizenz: WTFPL)
|
|
Zitat
|