Hi guys,
I’m totally lost in the Graphics.FillRectangle, I’m trying to draw two rectangles, one pointing up one pointing down.
It took me about a minute to create the first one (pointing up) but whatever I do I can’t figure out who for crying out loud do I draw the opposite.
This is what I have for the first one (with a little bit of transparency)
g.DrawingColor = Color.RGB(80, 200, 250, 75)
Var points(6) As Double
points(1) = 0
points(2) = 45
points(3) = 19
points(4) = 19
points(5) = 40
points(6) = 55
g.FillPolygon(points)
This is what I wish to end up with:
Is it applicable?