[ELI5] Why can computers not make curves?

907 views

Every 3D modelling software simply uses a series of flat polygons, small enough to appear curved, to created spheres etc. Why? Why can technology even today find it easier to render literally millions of little triangles, than just one curve?

In: Technology

16 Answers

Anonymous 0 Comments

Triangles are also a very good way to store data. If you boil it down to just geometry, then to draw a triangle you need to store 3 points in 3D space (the most memory) then the order that the edges connect. To draw the NEXT triangle you only need to store one other 3D point, since 2 points already exist. What you end up doing then is usually storing a point list, and some data to describe how to turn those into a surface.

It gets more complicated after that, not all triangles are connected, you are storing directional normal for each point, texcoords and so on…

You are viewing 1 out of 16 answers, click here to view all answers.