Registriert seit: 27. Mai 2008
72 Beiträge
|
Re: Quader in Delphi zeichnen
22. Jun 2008, 00:47
Zitat von Matze89:
Wie kann ich machen, das dieses Quader auch wie ein Körper aussieht? bei mir wird es nur immer ein Rechteck.
Du meinst bestimmt eine dreidimensionale Darstellung.
Das würde ich mit Canvas.Polygon machen.
Delphi-Quellcode:
Canvas.Brush.Color := clYellow;
Canvas.Polygon([Point(30, 10), Point(130, 10), Point(100, 60), Point(0, 60)]);
Canvas.Polygon([Point(0, 60), Point(100, 60), Point(100, 120), Point(0, 120)]);
Canvas.Polygon([Point(100, 60), Point(100, 120), Point(130, 70), Point(130, 10)]);
|
|
Zitat
|