Previous | Next --- Slide 77 of 79
Back to Lecture Thumbnails
Midoriya

How do we know when to stop branching? Is there a fix threshold that works the best?

kkzhang

This incrementally decreasing size of blocks looks like some version of gradient descent. Is there some factor that we want to decrease these block sizes by to increase efficiency?

frogger

This reminds me of a data structure I used in a previous internship called an octree, which is similar in structure except used to organize points in 3D space. I'm wondering, are there ever situations where knowing something about where an object is in 3D can help with the rasterization process of the associated triangles in 2D? Or is all the information from the previous stages of the pipeline completely irrelevant?

shoes

This looks kinda like the barnes hut algorithm to me but with some modifications. Is that the algorithm or something simpler?