The DDA (Digital Differential Analyzer) line drawing algorithm is an efficient method for drawing lines in computer graphics. It uses simple calculations to determine the coordinates of each pixel along a line.
We are given two points, which define the start and end of the line:
The points (x1, y1) and (x2, y2) will define the start and end of the line.
We calculate the differences in the X and Y coordinates:
\[ \Delta X = x2 - x1 \]
\[ \Delta Y = y2 - y1 \]
The values of ΔX and ΔY will help in determining the slope and how to increment X or Y.
The slope (m) of the line is calculated as:
\[ m = \frac{\Delta Y}{\Delta X} \]
This gives us the direction of the line, which helps in deciding whether to increment X or Y.
Now, we decide how to move along the line. There are two cases:
In this case, we increment X by 1 in each step. To find the corresponding Y, we use the slope:
\[ \Delta Y = m \times \Delta X \]
Since we are incrementing X by 1 (i.e., ΔX = 1), we substitute this into the equation:
\[ y_{i+1} = y_i + m \]
Now, we increment X by 1:
\[ x_{i+1} = x_i + 1 \]
In this case, we increment Y by 1 in each step. To find the corresponding X, we rearrange the slope formula:
\[ \Delta X = \frac{\Delta Y}{m} \]
Since we are incrementing Y by 1 (i.e., ΔY = 1), we substitute this into the equation:
\[ x_{i+1} = x_i + \frac{1}{m} \]
Now, we increment Y by 1:
\[ y_{i+1} = y_i + 1 \]
Start at (x1, y1) and keep calculating the next coordinates using the steps above until reaching (x2, y2). Round the values to get the closest integer pixel positions.
Example: Line from (2, 3) to (6, 8)
Given:
First, calculate the differences:
\[ \Delta X = 6 - 2 = 4, \quad \Delta Y = 8 - 3 = 5 \]
Next, calculate the slope:
\[ m = \frac{5}{4} = 1.25 \]
Since ΔY > ΔX, we increment Y by 1 and calculate X for each step. Here’s the calculation for the points:
\[ X_{\text{next}} = X + \frac{1}{m} = 2 + \frac{1}{1.25} = 2.8 \]
\[ X_{\text{next}} = X + \frac{1}{m} = 2.8 + \frac{1}{1.25} = 3.6 \]
\[ X_{\text{next}} = X + \frac{1}{m} = 3.6 + \frac{1}{1.25} = 4.4 \]
\[ X_{\text{next}} = X + \frac{1}{m} = 4.4 + \frac{1}{1.25} = 5.2 \]
\[ X_{\text{next}} = X + \frac{1}{m} = 5.2 + \frac{1}{1.25} = 6 \]
Here’s the table of values:
x | y
------+------
2 | 3
2.8 | 4
3.6 | 5
4.4 | 6
5.2 | 7
6 | 8
This table shows the calculated points from the start to the end point using the DDA algorithm.
Example: Line from (1, 1) to (4, 3)
Given:
First, calculate the differences:
\[ \Delta X = 4 - 1 = 3, \quad \Delta Y = 3 - 1 = 2 \]
Next, calculate the slope:
\[ m = \frac{2}{3} \approx 0.6667 \]
Since ΔX > ΔY, we increment X and calculate Y for each step. Here’s the calculation for the points:
\[ Y_{\text{next}} = Y + m = 1 + 0.6667 = 1.6667 \]
\[ Y_{\text{next}} = Y + m = 1.6667 + 0.6667 = 2.3333 \]
\[ Y_{\text{next}} = Y + m = 2.3333 + 0.6667 = 3 \]
Here’s the table of values:
x | y
-----+-----
1 | 1
2 | 1.6667
3 | 2.3333
4 | 3
This table shows the calculated points from the start to the end point using the DDA algorithm.
Definition: The Bresenham's Line Drawing Algorithm is an efficient way to draw a straight line between two points in computer graphics. The algorithm uses integer calculations to avoid the use of floating-point operations, making it faster and suitable for raster display systems.
We are given two points (x1, y1) and (x2, y2), which define the start and end of the line.
First, we calculate the differences in X and Y:
\[ \Delta X = x2 - x1, \quad \Delta Y = y2 - y1 \]
Important: These values of ΔX and ΔY are calculated once at the beginning and remain the same throughout the algorithm. When updating the decision parameter p, we always use these initial values and do not recalculate them based on the updated x and y.
The slope m is calculated as:
\[ m = \frac{\Delta Y}{\Delta X} \]
We use this to determine whether the line is shallow or steep.
The decision parameter p is initialized using the fixed values of ΔX and ΔY:
\[ p = 2\Delta Y - \Delta X \]
Important: When updating p in later steps, we always use the original ΔX and ΔY that were calculated at the beginning.
Now, we check whether the slope m is less than 1 or greater than or equal to 1. The algorithm behaves differently based on this value:
If m < 1, we always increment x by 1 and decide whether to increment y.
Using the fixed values of ΔX and ΔY, the steps are:
\[ x_{i+1} = x_i + 1, \quad y_{i+1} = y_i \]
Update p using the fixed ΔX and ΔY:
\[ p = p + 2 \Delta Y \]
\[ x_{i+1} = x_i + 1, \quad y_{i+1} = y_i + 1 \]
Update p using the fixed ΔX and ΔY:
\[ p = p + 2 \Delta Y - 2 \Delta X \]
If m ≥ 1, we always increment y by 1 and decide whether to increment x.
Using the fixed values of ΔX and ΔY, the steps are:
\[ x_{i+1} = x_i, \quad y_{i+1} = y_i + 1 \]
Update p using the fixed ΔX and ΔY:
\[ p = p + 2 \Delta X \]
\[ x_{i+1} = x_i + 1, \quad y_{i+1} = y_i + 1 \]
Update p using the fixed ΔX and ΔY:
\[ p = p + 2 \Delta X - 2 \Delta Y \]
We continue applying the rules above, updating p and plotting the points step by step from (x1, y1) to (x2, y2).
Important: The values of ΔX and ΔY never change during this process. When updating p, we do not recalculate them using the new x and y. Instead, we always use the original values calculated at the beginning.
Bresenham's Line Drawing Algorithm: Example
We will use Bresenham's Line Drawing Algorithm to draw a line between the points (1, 1) and (5, 3).
Let the starting point be:
\[ x_0 = 1, \quad y_0 = 1 \]
We continue until we reach:
\[ x = 5, \quad y = 3 \]
First, we calculate the differences in the x and y coordinates:
\[ \Delta X = x_2 - x_1 = 5 - 1 = 4, \quad \Delta Y = y_2 - y_1 = 3 - 1 = 2 \]
The decision parameter \( p \) is calculated as:
\[ p_0 = 2 \Delta Y - \Delta X = 2 \times 2 - 4 = 0 \]
Since \( m < 1 \), we increment \( x \) by 1 at each step and decide whether to increment \( y \) based on \( p \).
\[ x_1 = x_0 + 1 = 2, \quad y_1 = y_0 + 1 = 2 \]
Update \( p \):
\[ p_1 = p_0 + 2 \Delta Y - 2 \Delta X = 0 + 2(2) - 2(4) = -4 \]
\[ x_2 = x_1 + 1 = 3, \quad y_2 = y_1 = 2 \]
Update \( p \):
\[ p_2 = p_1 + 2 \Delta Y = -4 + 2(2) = 0 \]
\[ x_3 = x_2 + 1 = 4, \quad y_3 = y_2 + 1 = 3 \]
Update \( p \):
\[ p_3 = p_2 + 2 \Delta Y - 2 \Delta X = 0 + 2(2) - 2(4) = -4 \]
\[ x_4 = x_3 + 1 = 5, \quad y_4 = y_3 = 3 \]
Since we have reached \( x = 5, y = 3 \), we stop.
X | Y | p | Action
-----+----+----+----------------------------
1 | 1 | 0 | Initial point
2 | 2 | -4 | Increment X, Increment Y (p ≥ 0)
3 | 2 | 0 | Increment X only (p < 0)
4 | 3 | -4 | Increment X, Increment Y (p ≥ 0)
5 | 3 | - | Increment X only, reached endpoint
The points (1,1), (2,2), (3,2), (4,3), and (5,3) are plotted following Bresenham's algorithm. The decision parameter is used to determine whether to increment Y in each step while always incrementing X by 1.
The Midpoint Circle Algorithm is an efficient method for drawing circles using only integer calculations. It avoids floating-point arithmetic, making it faster for computers.
A circle is defined by the equation:
\[ x^2 + y^2 = r^2 \]
However, solving for \( y \) requires square roots and floating-point calculations, which are inefficient. The Midpoint Circle Algorithm helps determine the next pixel using integer calculations only.
We start at \( (0, r) \), the top of the circle (90°), and move towards the 45° line.
At each step, we have two possible choices for the next pixel:
We need a way to decide which point is closer to the actual circle.
To make this decision, we use the midpoint between the two possible points:
\[ \text{Midpoint} = (x+1, y - \frac{1}{2}) \]
We check whether this midpoint is inside or outside the circle to decide the next point.
The equation of a circle is:
\[ x^2 + y^2 - r^2 = 0 \]
For the midpoint, we define the decision parameter:
\[ p = f(x+1, y - \frac{1}{2}) = (x+1)^2 + (y - \frac{1}{2})^2 - r^2 \]
To avoid fractions, we multiply everything by 2 and simplify. The initial decision parameter at \( (0, r) \) is:
\[ p = 1 - r \]
At each step, we check the midpoint \( (x+1, y - \frac{1}{2}) \) using the decision parameter \( p \).
Since the midpoint is inside the circle, the actual circle passes above it, so we move right to \( (x+1, y) \).
We update the decision parameter:
\[ p_{\text{new}} = p + 2x + 3 \]
Since the midpoint is outside the circle, the actual circle passes below it, so we move diagonally to \( (x+1, y-1) \).
We update the decision parameter:
\[ p_{\text{new}} = p + 2x - 2y + 5 \]
We start at \( (0, r) \) (top of the circle at 90°) and move downward until we reach the 45° line.
We stop when:
\[ x \geq y \]
This happens because:
We calculate only 1/8th of the circle because:
By using symmetry, we save computation time and ensure efficient drawing of the full circle.
We start from the topmost point of the circle at \( (0,5) \). The decision parameter helps us determine the next point.
The initial decision parameter is given by:
\[ p_0 = 1 - r \]
Substituting \( r = 5 \):
\[ p_0 = 1 - 5 = -4 \]
We use the decision rule:
\[ p_{\text{new}} = p + 2x + 3 \]
\[ p_{\text{new}} = p + 2x - 2y + 5 \]
Starting from \( (0,5) \):
At this point, the current values of \( x = 0 \) and \( y = 5 \). Since \( p_0 < 0 \), we move horizontally to the right, meaning the next point will be \( (x+1, y) = (1, 5) \), and we update the decision parameter:
\( p_1 = p_0 + 2x + 3 = -4 + 2(0) + 3 = -1 \)
\( p_2 = p_1 + 2x + 3 = -1 + 2(1) + 3 = 4 \)
\( p_3 = p_2 + 2x - 2y + 5 = 4 + 2(2) - 2(5) + 5 = 3 \)
x | y
-----+-----
0 | 5
1 | 5
2 | 5
3 | 4
4 | 3
These points are calculated for one-eighth of the circle.