Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6761189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T14:09:22+00:00 2026-05-26T14:09:22+00:00

I’m trying to fix this triangle rasterizer, but cannot make it work correctly. For

  • 0

I’m trying to fix this triangle rasterizer, but cannot make it work correctly. For some reason it only draws half of the triangles.

void DrawTriangle(Point2D p0, Point2D p1, Point2D p2)
{
    Point2D Top, Middle, Bottom;
    bool MiddleIsLeft;

    if (p0.y < p1.y)                    // case: 1, 2, 5
    {
        if (p0.y < p2.y)                // case: 1, 2
        {
            if (p1.y < p2.y)            // case: 1
            {
                Top = p0;
                Middle = p1;
                Bottom = p2;
                MiddleIsLeft = true;
            }
            else                        // case: 2
            {
                Top = p0;
                Middle = p2;
                Bottom = p1;
                MiddleIsLeft = false;
            }
        }
        else                            // case: 5
        {
            Top = p2;
            Middle = p0;
            Bottom = p1;
            MiddleIsLeft = true;                
        }
    }
    else                        // case: 3, 4, 6
    {
        if (p0.y < p2.y)        // case: 4
        {
            Top = p1;
            Middle = p0;
            Bottom = p2;
            MiddleIsLeft = false;
        }
        else                    // case: 3, 6
        {
            if (p1.y < p2.y)    // case: 3
            {
                Top = p1;
                Middle = p2;
                Bottom = p0;
                MiddleIsLeft = true;
            }
            else                // case 6
            {
                Top = p2;
                Middle = p1;
                Bottom = p0;
                MiddleIsLeft = false;
            }
        }
    }

    float xLeft, xRight;
    xLeft = xRight = Top.x;
    float mLeft, mRight;
    // Region 1
    if(MiddleIsLeft)
    {
        mLeft = (Top.x - Middle.x) / (Top.y - Middle.y);
        mRight = (Top.x - Bottom.x) / (Top.y - Bottom.y);
    }
    else
    {
        mLeft = (Top.x - Bottom.x) / (Top.y - Bottom.y);
        mRight = (Middle.x - Top.x) / (Middle.y - Top.y);
    }
    int finalY;
    float Tleft, Tright;
    for (int y = ceil(Top.y); y < (int)Middle.y; y++)
    {        
        Tleft=float(Top.y-y)/(Top.y-Middle.y);
        Tright=float(Top.y-y)/(Top.y-Bottom.y);
        for (int x = ceil(xLeft); x <= ceil(xRight) - 1 ; x++)
        {
            FrameBuffer::SetPixel(x, y, p0.r,p0.g,p0.b);

        }  
        xLeft += mLeft;
        xRight += mRight;
        finalY = y;
    }

    // Region 2 
    if (MiddleIsLeft)
    {
        mLeft = (Bottom.x - Middle.x) / (Bottom.y - Middle.y);
    }
    else
    {
        mRight = (Middle.x - Bottom.x) / (Middle.y - Bottom.y);
    }

    for (int y = Middle.y; y <= ceil(Bottom.y) - 1; y++)
    {
        Tleft=float(Bottom.y-y)/(Bottom.y-Middle.y);
        Tright=float(Top.y-y)/(Top.y-Bottom.y);
        for (int x = ceil(xLeft); x <= ceil(xRight) - 1; x++)
        {
            FrameBuffer::SetPixel(x, y, p0.r,p0.g,p0.b);
        }
        xLeft += mLeft;
        xRight += mRight; 

    }
}

Here is what happens when I use it to draw shapes.

Tank image

When I disable the second region, all those weird triangles disappear.

without the second region

The wireframe mode works perfect, so this eliminates all the other possibilities other than the triangle rasterizer.

wireframe

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T14:09:23+00:00Added an answer on May 26, 2026 at 2:09 pm

    I kind of got lost in your implementation, but here’s what I do (I have a slightly more complex version for arbitrary convex polygons, not just triangles) and I think apart from the Bresenham’s algorithm it’s very simple (actually the algorithm is simple too):

    #include <stddef.h>
    #include <limits.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #include <time.h>
    
    #define SCREEN_HEIGHT 22
    #define SCREEN_WIDTH  78
    
    // Simulated frame buffer
    char Screen[SCREEN_HEIGHT][SCREEN_WIDTH];
    
    void SetPixel(long x, long y, char color)
    {
      if ((x < 0) || (x >= SCREEN_WIDTH) ||
          (y < 0) || (y >= SCREEN_HEIGHT))
      {
        return;
      }
    
      Screen[y][x] = color;
    }
    
    void Visualize(void)
    {
      long x, y;
    
      for (y = 0; y < SCREEN_HEIGHT; y++)
      {
        for (x = 0; x < SCREEN_WIDTH; x++)
        {
          printf("%c", Screen[y][x]);
        }
    
        printf("\n");
      }
    }
    
    typedef struct
    {
      long x, y;
      unsigned char color;
    } Point2D;
    
    
    // min X and max X for every horizontal line within the triangle
    long ContourX[SCREEN_HEIGHT][2];
    
    #define ABS(x) ((x >= 0) ? x : -x)
    
    // Scans a side of a triangle setting min X and max X in ContourX[][]
    // (using the Bresenham's line drawing algorithm).
    void ScanLine(long x1, long y1, long x2, long y2)
    {
      long sx, sy, dx1, dy1, dx2, dy2, x, y, m, n, k, cnt;
    
      sx = x2 - x1;
      sy = y2 - y1;
    
      if (sx > 0) dx1 = 1;
      else if (sx < 0) dx1 = -1;
      else dx1 = 0;
    
      if (sy > 0) dy1 = 1;
      else if (sy < 0) dy1 = -1;
      else dy1 = 0;
    
      m = ABS(sx);
      n = ABS(sy);
      dx2 = dx1;
      dy2 = 0;
    
      if (m < n)
      {
        m = ABS(sy);
        n = ABS(sx);
        dx2 = 0;
        dy2 = dy1;
      }
    
      x = x1; y = y1;
      cnt = m + 1;
      k = n / 2;
    
      while (cnt--)
      {
        if ((y >= 0) && (y < SCREEN_HEIGHT))
        {
          if (x < ContourX[y][0]) ContourX[y][0] = x;
          if (x > ContourX[y][1]) ContourX[y][1] = x;
        }
    
        k += n;
        if (k < m)
        {
          x += dx2;
          y += dy2;
        }
        else
        {
          k -= m;
          x += dx1;
          y += dy1;
        }
      }
    }
    
    void DrawTriangle(Point2D p0, Point2D p1, Point2D p2)
    {
      int y;
    
      for (y = 0; y < SCREEN_HEIGHT; y++)
      {
        ContourX[y][0] = LONG_MAX; // min X
        ContourX[y][1] = LONG_MIN; // max X
      }
    
      ScanLine(p0.x, p0.y, p1.x, p1.y);
      ScanLine(p1.x, p1.y, p2.x, p2.y);
      ScanLine(p2.x, p2.y, p0.x, p0.y);
    
      for (y = 0; y < SCREEN_HEIGHT; y++)
      {
        if (ContourX[y][1] >= ContourX[y][0])
        {
          long x = ContourX[y][0];
          long len = 1 + ContourX[y][1] - ContourX[y][0];
    
          // Can draw a horizontal line instead of individual pixels here
          while (len--)
          {
            SetPixel(x++, y, p0.color);
          }
        }
      }
    }
    
    int main(void)
    {
      Point2D p0, p1, p2;
    
      // clear the screen
      memset(Screen, ' ', sizeof(Screen));
    
      // generate random triangle coordinates
      srand((unsigned)time(NULL));
    
      p0.x = rand() % SCREEN_WIDTH;
      p0.y = rand() % SCREEN_HEIGHT;
    
      p1.x = rand() % SCREEN_WIDTH;
      p1.y = rand() % SCREEN_HEIGHT;
    
      p2.x = rand() % SCREEN_WIDTH;
      p2.y = rand() % SCREEN_HEIGHT;
    
      // draw the triangle
      p0.color = '1';
      DrawTriangle(p0, p1, p2);
    
      // also draw the triangle's vertices
      SetPixel(p0.x, p0.y, '*');
      SetPixel(p1.x, p1.y, '*');
      SetPixel(p2.x, p2.y, '*');
    
      Visualize();
    
      return 0;
    }
    

    Output:

       *111111
        1111111111111
          111111111111111111
             1111111111111111111111
               111111111111111111111111111
                 11111111111111111111111111111111
                    111111111111111111111111111111111111
                      11111111111111111111111111111111111111111
                        111111111111111111111111111111111111111*
                           11111111111111111111111111111111111
                             1111111111111111111111111111111
                                111111111111111111111111111
                                  11111111111111111111111
                                    1111111111111111111
                                       11111111111111
                                         11111111111
                                           1111111
                                              1*
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For some reason, after submitting a string like this Jack’s Spindle from a text
Seemingly simple, but I cannot find anything relevant on the web. What is the
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have some data like this: 1 2 3 4 5 9 2 6
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.