A late Merry Christmas and an early Happy New Year everyone! This video wasn't supposed to turn out this mathematical but I couldn't resist ;) Was there to much math or do you want more in future episodes?
@camillebrugel29884 жыл бұрын
You don't have a lot of views but your content is amazing. Thanks. :)
@citanool3 жыл бұрын
I've been looking for this kind of channel for sooo long. Thank you for breaking down the process into simpler algebraic explanations that don't go way over my head! Would love to see something regarding 3D color lookup tables :)
@gutzimmumdo49102 жыл бұрын
underrated channel very good explanations and visualizations.
@no-lifenoah7861 Жыл бұрын
You have made a subject I previously found completely arcane and incomprehensible and made it as close to easy as it can possibly get. Thank you
@Seilor_12 Жыл бұрын
the best explanation that i happened to find, thank you so much for your content.
@jopssauce5 ай бұрын
I was struggling with these concepts but your video cleared it up extremely well. Thanks so much!
@YugeCheng8 ай бұрын
Very clear explanation together with vivid animation. Thanks for your efforts!
@Yuvaraj-pd6ng11 ай бұрын
The best video on textures on KZbin
@aydaryakup4540 Жыл бұрын
Damn, so great channel, I can't even describe how grateful I am to you
@ClutchGen3 жыл бұрын
Seriously, your content is awesome. Thank you!
@FloatyMonkey3 жыл бұрын
Haha, guess someone's binge-watching. Thank you, means a lot!
@ClutchGen3 жыл бұрын
@@FloatyMonkey Oh, I am! I have an interview for my dream job on Monday where experience with Graphics Programming is a big plus. Moving on to your Vectors video next.
@FloatyMonkey3 жыл бұрын
Wow, exciting, hope you get the job, good luck!
@linelogic16993 жыл бұрын
Your graphics videos are excellent . Explains the concept well with nice animations. Pls make more of these. Say on 'Graphics Pipeline'
@guilhermecampos831311 ай бұрын
Man, just found your video and it is really good. I'm learning graphics programmin and this info will be very useful for me in the future. Thanks man, excellent explanation,
@soumyajeet78094 жыл бұрын
Wow these Graphics videos are so informative! I would really learn a lot if you continue the series. Thank you.
@CosmicComputer5 жыл бұрын
I never understood how clamp worked, now I think I do, awesome! Thank you, happy new year!
@santerisuomi90635 жыл бұрын
Great series. Especially liked the ones on vectors and trigonometry, they were great refresher videos. I hope you'll make a video on matrices and their operations and such at some point :D
@FloatyMonkey5 жыл бұрын
Thanks. A video on matrices is definitely coming! You can expect it within 3 to 4 weeks.
@Phostings1 Жыл бұрын
OH WOW! I know i'm late on this, but you literally explained how the N64 generated its graphics! I always wanted to know how it works. As you started to explain the process, I could piece together my thoughts. Nice job!
@D3lor34n2 жыл бұрын
Well explained, thank you
@chadyonfire7878 Жыл бұрын
brilliant thx
@Zachariah-Abueg2 жыл бұрын
exercise: how do we know that 4 and 8 are the dimensions we want for interpolating a 5x5 mipmap? i first noticed that 2^(log₂ 5) = 5, by the property that a^(logₐ x) = x. from here, i wanted to understand why 4 needed the floor of the log and why 8 needed the ceiling of the log. i had an intuitive sense that 4 is what happens when you "round down" and 8 is what happens when you "round up", but it didn't satisfy me so i sought to make it precise. first, what does log₂ 5 even mean? let's set x = log₂ 5. then by the definition of logarithms, we have the equivalent question "what number x satisfies 2ˣ = 5?". this sets the scene. then, i notice that 2² = 4 ≤ 5 ≤ 8 = 2³. using the above question, i reformulated this as 2² ≤ 2ˣ ≤ 2³. hence, 2 ≤ x ≤ 3. finally, i used my intuition of floors and ceilings. with the inequality above, rounding x down gives x = 2 and rounding x up gives x = 3. with all this intuition, we can see why it makes sense to use 2^⌊log₂ x⌋ and 2^⌈log₂ x⌉ to find the dimensions of the two grids right before and right after the x by x grid we are using.
@berkanc_14365 ай бұрын
underrated af
@dustinthompson86003 жыл бұрын
I have 2 questions: 1. UV Mapping - If we need to store a vertex multiple times in the Vertex Buffer when it has multiple UV coordinates, then wouldn't this invalidate the use of an Index Buffer? 2. Mipmapping - If we only have the mipmap texture files (in powers of 2) like the 4x4 and the 8x8, what is the reason we would query for a non-existent 5x5 texture instead of using the files we already have? Thank you, your series on mathematics and game engines has really helped me progress as a new game developer.
@FloatyMonkey3 жыл бұрын
Great questions, I've done my best to answer them: 1. That would be true if a large amount of vertices or even every vertex needs its own uv-coordinate. In practice though, that's almost never the case. It basically comes down to how many 'cuts' you need to make in the model to unwrap it into the UV map. For a cube that amount is relatively high, for large and complex models however, the amount of 'cuts' is very low compared to the total amount of edges. As always, any optimization like the use of an index buffer depends on the specific use case. 2. The reason we query a 5x5 texture or any arbitrary size for that matter is because it's the 'area' the texture covers on the screen. Before a texture gets sampled, the gpu figures out how many pixels it occupies in the render target. Based on this number it wel then take the mipmap that's smaller and larger and interpolate between them. In the case of 4, 5 and 8 the difference is not too big but lets say a texture takes up 1500 pixels on your screen, then the nearest mipmaps (1024 & 2048) are almost 500 pixels too small or too large. To reduce artifacts we therefore interpolate between them based on whose size is closest to 1500. I'm glad my series is helpfull to you.
@_b709010 ай бұрын
13:00 where's the blue?
@princedeka60543 жыл бұрын
New subscriber 😎👍.... I am also a programmer and specifically interested in Graphics programming!!
@michaelmclean23632 жыл бұрын
What an amazing way to learn math. I would definitely buy a course like this on Udemy or something for beginners
@4AneR5 жыл бұрын
You have superb visualisations, but please use more contrast colors. When you refer to 'blue' pixels, and there are 3 arguably different blue colors, then it's disturbing
@FloatyMonkey5 жыл бұрын
Thanks, I'll definitely take that into account. I am colourblind though. For me there was only one color that was 'obviously' blue. Haha, I guess I'm going to anoy family or friends to check that for me in the future.
@4AneR5 жыл бұрын
@@FloatyMonkey wow I appreciate your efforts to explain graphics then. You may just straight use rainbow colors, since they're hard to mess up, but I assume it's harder for you to distinguish them while editing ;)
@sherineabdelhak352 жыл бұрын
excellent series. would be awesome if it explores the new technologies in this pipeline now, esp with AI
@anonymoussloth66874 жыл бұрын
what software do you use to make these animations and amazing depictions?
@FloatyMonkey4 жыл бұрын
I use PowerPoint. The morph transition does a lot of the work.
@djaccount5458 Жыл бұрын
Even simply example code is better than this PowerPoint presentation.