![]() |
Paintbox - Koordinatenkreuz
Ich habe hier in einer Paintbox ein koordinaten kreuz
Delphi-Quellcode:
Jetzt gehts um die Punkte auf dem Koordinatenkreuz.
procedure TForm1.DrawCoords;
var i,h: Integer; begin with PaintBox1.Canvas do begin Pen.Color:=clBlack; //Ordinate & Abszisse MoveTo(0, PaintBox1.Height div 2); LineTo(PaintBox1.Width, PaintBox1.Height div 2); MoveTo(PaintBox1.Width div 2, 0); LineTo(PaintBox1.Width div 2, PaintBox1.Height); //Skalierung for i := 1 to 20 do begin h := i * (PaintBox1.Width div 20); MoveTo(h, (PaintBox1.Height div 2) - 3); LineTo(h, (PaintBox1.Height div 2) + 3); MoveTo((PaintBox1.Width div 2) - 3, h); LineTo((PaintBox1.Width div 2) + 3, h); end; //Beschriftung TextOut((PaintBox1.Width div 2) + 3,(PaintBox1.Height div 2) + 1, '0'); TextOut((PaintBox1.Width div 2) + 48, (PaintBox1.Height div 2) + 6,'1'); TextOut((PaintBox1.Width div 2) - 55, (PaintBox1.Height div 2) + 6,'-1'); TextOut((PaintBox1.Width div 2) + 6,(PaintBox1.Height div 2) - 37,'1'); //Spitzen MoveTo(PaintBox1.Width - 5, (PaintBox1.Height div 2) - 5); LineTo(PaintBox1.Width, (PaintBox1.Height div 2)); LineTo(PaintBox1.Width - 5, (PaintBox1.Height div 2) + 5); MoveTo((PaintBox1.Width div 2) - 5, 5); LineTo((PaintBox1.Width div 2), 0); LineTo((PaintBox1.Width div 2) + 5, 5); end; end; Der Punkt 0/0 liegt ja in der mitte der paintbox aber 0/0 auf der paintbox ist ja ganz oben links in der ecke Wie kann ich dies richtig machen? Die paintbox ist 500x500 pixel groß |
Re: Paintbox - Koordinatenkreuz
Der Mittelpunkt des Kreuzes muss demnach auf PaintBox.Width div 2, PaintBox.Height div 2 leigen.
|
Re: Paintbox - Koordinatenkreuz
Ok PaintBox.Width div 2, PaintBox.Height div 2 und wie mit center deklarieren?
|
Re: Paintbox - Koordinatenkreuz
Zitat:
|
Re: Paintbox - Koordinatenkreuz
mein Problem habe ich ja oben schon geschildert.... ich möchte meine Paintbox so einstellen das der mittelpunkt meiner Paintbox 0/0 ist und nicht 250x250
(sorry mit anderen account eingelogt vom freund) Er hat ein anderes problem |
Re: Paintbox - Koordinatenkreuz
Und warum sagst du das nicht? Mit
![]() |
Re: Paintbox - Koordinatenkreuz
ähh SetMapMode ich klick drauf komm auf einer Englischen seite mit VIsual basic wenn ich das richtig seh o_O
ich glaube nicht das mit das hilft |
Re: Paintbox - Koordinatenkreuz
Doch das hilft dir, da es dieselben funktionen/proceduren auch in Delphi gibt (kommen ja alle von Microsoft). ;)
|
Re: Paintbox - Koordinatenkreuz
Zitat:
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 16:10 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz