예제 #1
0
 public void DrawLine(D2DPoint start, D2DPoint end, D2DColor color,
                      FLOAT weight = 1, D2DDashStyle dashStyle = D2DDashStyle.Solid)
 {
     D2D.DrawLine(this.Handle, start, end, color, weight, dashStyle);
 }
예제 #2
0
 public void DrawLine(D2DPoint start, D2DPoint end, D2DColor color,
                      FLOAT weight         = 1, D2DDashStyle dashStyle = D2DDashStyle.Solid,
                      D2DCapStyle startCap = D2DCapStyle.Flat, D2DCapStyle endCap = D2DCapStyle.Flat)
 {
     D2D.DrawLine(this.Handle, start, end, color, weight, dashStyle, startCap, endCap);
 }