Polygon (C++)
From RAD Studio XE2 Code Examples
Language:
Description
This example draws a polygon in the specified shape and fills it with the color teal.
Code
void __fastcall TForm1::PaintBox1Paint(TObject *Sender) { TPoint points[4]; points[0] = Point(10,10); points[1] = Point(30,10); points[2] = Point(130,30); points[3] = Point(240,120); (dynamic_cast<TPaintBox *>(Sender))->Canvas->Brush->Color = clTeal; (dynamic_cast<TPaintBox *>(Sender))->Canvas->Polygon(points, 3); }
Uses
- Vcl.Graphics.TCanvas.Polygon ( fr | de | ja )
- System.Classes.Point ( fr | de | ja )
- System.Types.TPoint ( fr | de | ja )