HN user

puterich123

6 karma
Posts0
Comments8
View on HN
No posts found.

Pretty cool site, we were trying to figure out the scoring system the other day. I don‘t think the replay button is needed though

He’s basically showing data oriented design, where you, try to limit cpu cache misses by operating on the data.

This approach can be way faster, but is only relevant when you have a lot of entities you need to iterate over. If you have 3-100 objects it would of course still be faster but by negligible amount

I played a little with FFT Gaussian blur. It uses the frequency domain, and so does not have to average hundreds of points, but rather transforms the image and the blur kernel into the frequency domain. There it performs a pointwise multiplication and transforms the image back. It's way faster than the direct convolution.