Zitat von
Ratte:
Was x und was y ist probier ich einfach immer aus, merken kann ich es mir auch nicht (nur dass 0/0 links oben ist)
Falsch! 0,0 ist unten links!
Wochenlang habe ich dran rumstudiert, dabei ist es ganz einfach. Ich habs jetzt selber rausgekriegt und Canvas kenne ich jetzt auch! Geil!
Canvas:
x horizontale Achse, y vertikale Achse.
0,0 ist unten links
height ist ymax
width ist xmax
So hab ichs gemacht:
Delphi-Quellcode:
Points[1]:=Point(0, height - height div 4);
Points[2]:=Point(0, 0 + height div 4);
Points[3]:=Point(width - width div 4, 0 + height div 4);
Points[4]:=Point(width - width div 4, 0);
Points[5]:=Point(width, height div 2);
Points[6]:=Point(width - width div 4, height);
Points[7]:=Point(width - width div 4, height - height div 4);
Geil was!?