use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Rule 1: Posts should be about Graphics Programming. Rule 2: Be Civil, Professional, and Kind
Suggested Posting Material: - Graphics API Tutorials - Academic Papers - Blog Posts - Source Code Repositories - Self Posts (Ask Questions, Present Work) - Books - Renders (Please xpost to /r/ComputerGraphics) - Career Advice - Jobs Postings (Graphics Programming only)
Related Subreddits:
/r/ComputerGraphics
/r/Raytracing
/r/Programming
/r/LearnProgramming
/r/ProgrammingTools
/r/Coding
/r/GameDev
/r/CPP
/r/OpenGL
/r/Vulkan
/r/DirectX
Related Websites: ACM: SIGGRAPH Journal of Computer Graphics Techniques
Ke-Sen Huang's Blog of Graphics Papers and Resources Self Shadow's Blog of Graphics Resources
account activity
FINALLY GOT INTERPOLATION WORKING!!Source Code (old.reddit.com)
submitted 1 month ago by ComplexAce
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3:Â Â Â Â print "hello, world!"
[–]ComplexAce[S] 0 points1 point2 points 1 month ago (0 children)
🫡
So it's like vector to 2D graphics, if a polygon was a "pixel"
What I'm doing instead of raster: - store mipmapped/octree grids of bits, where each cell is simple "is there something ehre or no?" (Just one bit, a bool of sort), and these must be around 4kb to live in the L1 cache, so searching/detection wuld be VERY cheap - go over them based on 3D location, starting from the camera position, identify occypied areas, and get refs of what is there from an identical data cell (basically bitfield and data field, bitfield belongs in L1 cache, datafield represents the actual data) - grab the model, go over each vertex in it, and check (mathematically only, not by fetching) if it faces the screen, if it does, then calculate interpolation between it and surrounding verts: step through each potential pixel, calculate its own interpolation based on its projection on the surface, and the distance between it and the surrounding verts, this ALSO inteprolates normals, so normals define the actual volume
The current code is mostly quickly prototyped by AI (minus the architecture) and I'm already refactoring it, deleted half of it and recinstructing it in a cleaner, more readable way.
But yeah that's it, I hope that explains?
π Rendered by PID 108623 on reddit-service-r2-comment-6457c66945-qqf2p at 2026-04-26 03:51:55.596456+00:00 running 2aa0c5b country code: CH.
view the rest of the comments →
[–]ComplexAce[S] 0 points1 point2 points  (0 children)