Answers for "With the help of the pseudocode or algorithm hand stimulate the working of the Bresenhams line drawing algorithm for the line between (2,3) and (12,8)"

C++
2

Bresenham's line algorithm

static void bresenham(int x1, int y1, int x2, int y2) 
    { 
        int m_new = 2 * (y2 - y1); 
        int slope_error_new = m_new - (x2 - x1); 
      
        for (int x = x1, y = y1; x <= x2; x++) 
        { 
            System.out.print("(" +x + "," + y + ")n"); 
  
            // Add slope to increment angle formed 
            slope_error_new += m_new; 
  
            // Slope error reached limit, time to 
            // increment y and update slope error. 
            if (slope_error_new >= 0) 
            { 
                y++; 
                slope_error_new -= 2 * (x2 - x1); 
            } 
        } 
    }
Posted by: Guest on November-29-2020

Code answers related to "With the help of the pseudocode or algorithm hand stimulate the working of the Bresenhams line drawing algorithm for the line between (2,3) and (12,8)"

Browse Popular Code Answers by Language