I'm trying to render simple 3d shapes (in this particular case, a cube) in a html5 canvas. Translating 3d points to a 2d plane was easy enough, so I went ahead and starting coloring the polygons. They overlap in the wrong order. So I just calculate the distance of each polygon (based on the avarage of the 4 corners) and sort them based on that.
Except that doesn't really work. So how do you decide what polygons you draw first?
P.S. I'm trying to learn how to make this, so using existing libraries or something would not really work for that.