Shape;
BoundingRectangle(3,1);

//MoveTo(left+2*grid,top);
pt0.x = left +2*grid;
pt0.y = top;

//LineTo(right,top);
pt1.x = right;
pt1.y = top;

//LineTo(right -2*grid,midy);
pt2.x = right -2*grid;
pt2.y = midy;

//LineTo(right,bottom);
pt3.x = right;
pt3.y = bottom;

//LineTo(left +2*grid,bottom);
pt4.x = left +2*grid;
pt4.y = bottom;

//LineTo(left +2*grid,top);
pt5.x = left +2*grid;
pt5.y = top;

SolidBrush(RGB(255,0,0));

// 6 points
Polygon(6);
 