Exemple #1
0
 public unsafe static void DrawLines(GpGraphics graphics, GpPen pen, GpPoint[] points)
 {
     fixed(GpPoint *p = points)
     DrawLines(graphics, pen, p, points.Length);
 }
Exemple #2
0
 public unsafe static void DrawLines(GpGraphics graphics, GpPen pen, POINT[] points)
 {
     fixed(POINT *p = points)
     DrawLines(graphics, pen, (GpPoint *)p, points.Length);
 }