Registriert seit: 9. Jun 2003
Ort: Pforzheim
2.458 Beiträge
Delphi 2007 Professional
|
Re: TPoints vergleichen
15. Apr 2006, 13:18
xZise, du kannst dir doch auch eine kleine funktion schreiben:
Delphi-Quellcode:
function IsPointDifferently(point1, point2: TPoint): boolean;
begin
result := (point1.x <> point2.x) or (point1.y <> point2.y);
end;
gruss
Christian Bootz Einstein ist tot, Newton ist tot,
und mir ist auch schon ganz schlecht...
|