how can i calculate points 5 pixels from both ends on the 2 black lines in the attached image?
Attachment 98299
the lines are parallel + spaced approximately 24 pixels apart.
this is the code i used to draw the image:
Attachment 98299
the lines are parallel + spaced approximately 24 pixels apart.
this is the code i used to draw the image:
Code:
r = New Rectangle(100, 100, 74, 74)
e.Graphics.DrawRectangle(redPen, r)
e.Graphics.DrawLine(Pens.Black, r.Right - 17, r.Top, r.Left, r.Bottom - 17)
e.Graphics.DrawLine(Pens.Black, r.Right, r.Top + 17, r.Left + 17, r.Bottom)