예제 #1
0
 public static void ArrowLineTo(this Context context, double x, double y,
                                DrawArrowDelegate headArrow, DrawArrowDelegate tailArrow)
 {
     ArrowLineTo(context, x, y, headArrow, tailArrow, IdentityMatrix, IdentityMatrix);
 }
예제 #2
0
 public static void ArrowLineTo(this Context context, PointD p, DrawArrowDelegate headArrow,
                                DrawArrowDelegate tailArrow, Matrix headMatrix)
 {
     ArrowLineTo(context, p.X, p.Y, headArrow, tailArrow, headMatrix, IdentityMatrix);
 }
예제 #3
0
 public static void ArrowCurveTo(this Context context, PointD p1, PointD p2, PointD p3,
                                 DrawArrowDelegate headArrow, DrawArrowDelegate tailArrow)
 {
     ArrowCurveTo(context, p1.X, p1.Y, p2.X, p2.Y, p3.X, p3.Y, headArrow, tailArrow,
                  IdentityMatrix, IdentityMatrix);
 }