Example #1
0
 private void drawTrAnglArrow( ArrowComponents pts )
 {
     G.DrawLine( this.linePen, pts.Zero, pts.Tip );
     G.FillPolygon( this.innerBrush, new[] { pts.Tip, pts.Left, pts.Right } );
     G.DrawPolygon( this.linePen, new[] { pts.Tip, pts.Left, pts.Right } );
 }
Example #2
0
 private void drawLineArrow( ArrowComponents pts )
 {
     G.DrawLine( this.linePen, pts.Zero, pts.Tip );
     G.DrawLine( this.linePen, pts.Tip, pts.Left );
     G.DrawLine( this.linePen, pts.Tip, pts.Right );
 }