This is one of the best explanation I've ever seen on this topic.
@pollirodrigo Жыл бұрын
This is one of the best masters of games I know. Excellent explanation full of details.
@simaobonvalot9141 Жыл бұрын
Good explanation, looking forward to watch the other videos on other topics.
@Assafist2 жыл бұрын
Brilliant lecturer !!
@arkemalАй бұрын
thank you! Very well explained
@quentin73432 жыл бұрын
Excellent lecturer.
@baringkiron53759 ай бұрын
Thank you, you are so great at teaching!! 😄
@yoman94463 жыл бұрын
Thank you
@sallaklamhayyen98762 жыл бұрын
great explanation thank you so much
@stasbakalo62642 жыл бұрын
Good explanation! Thank you
@joscaz10 ай бұрын
Thanks for the great explanation!
@andregrobler43932 жыл бұрын
Very good explanation. Many thanks!!
@kera97986 ай бұрын
great stuff
@federicoriva79283 жыл бұрын
Really great explanation but there's one thing that i still don't get: when you talk about Enemy* enemy = new Enemy(), you say at 8:30 that "an object is a pointer to something in memory" and immediately afterwards you "all we have is a pointer to an object". So we have an object, enemy, allocated in stack which is pointing to an object allocated in heap? Why enemy is considered also an object and not just a pointer to an object? In simple words, is a pointer to an object considered to be an object?
@kamens7933 жыл бұрын
Not really, objects and pointer of a object are two different things. When you create a object with the key word new ( Enemy* enemy = new Enemy() ), your are doing two things: 1- Allocating memory on the heap for that object. 2- Asigning the address of that memory allocated to a variable called enemy. The variable enemy only contain the address, everytime you call it it will only point to the location of the object in the heap (That's why is called pointer).
@alleyesonme1432 Жыл бұрын
@@kamens793 So to say, pointer is a reference path?
@notovertaken83303 жыл бұрын
Could you upload the 3d software renderer with C language to Udemy? I love the platform there
@pikuma3 жыл бұрын
Hi there. The new courses will not be uploaded to Udemy, only at pikuma.com.