3 implementations of DrawLine
Microsoft.Maui.Graphics (3)
AbstractCanvas.cs (1)
136 public void DrawLine(float x1, float y1, float x2, float y2)
PictureCanvas.cs (1)
120 public void DrawLine(float x1, float y1, float x2, float y2)
ScalingCanvas.cs (1)
109 public void DrawLine(float x1, float y1, float x2, float y2)
7 references to DrawLine
Microsoft.Maui (4)
VisualDiagnostics\RectangleGridAdorner.cs (4)
34 canvas.DrawLine(0, y, LineMaxLength, y); 35 canvas.DrawLine(0, y + height, LineMaxLength, y + height); 36 canvas.DrawLine(x, 0, x, LineMaxLength); 37 canvas.DrawLine(x + width, 0, x + width, LineMaxLength);
Microsoft.Maui.Graphics (3)
CanvasExtensions.cs (1)
7 target.DrawLine(point1.X, point1.Y, point2.X, point2.Y);
PictureCanvas.cs (1)
124 => canvas.DrawLine(x1, y1, x2, y2)
ScalingCanvas.cs (1)
111 _canvas.DrawLine(x1 * _scaleX, y1 * _scaleY, x2 * _scaleX, y2 * _scaleY);