SciChart.Drawing Assembly > System.Windows.Media.Imaging Namespace > WriteableBitmapExtensions Class > DrawLineDDA Method : DrawLineDDA(WriteableBitmap,Int32,Int32,Int32,Int32,Color) Method
The WriteableBitmap.
The x-coordinate of the start point.
The y-coordinate of the start point.
The x-coordinate of the end point.
The y-coordinate of the end point.
The color for the line.
DrawLineDDA(WriteableBitmap,Int32,Int32,Int32,Int32,Color) Method
Draws a colored line by connecting two points using a DDA algorithm (Digital Differential Analyzer).
Syntax
[Extension()]
public static void DrawLineDDA( 
   WriteableBitmap bmp,
   int x1,
   int y1,
   int x2,
   int y2,
   Color color
)

Parameters

bmp
The WriteableBitmap.
x1
The x-coordinate of the start point.
y1
The y-coordinate of the start point.
x2
The x-coordinate of the end point.
y2
The y-coordinate of the end point.
color
The color for the line.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also