Caleb —
ChronalDragon Edit: Also wow we gotta add nested quotes hahaI think the ability to have multi quo…
Caleb —
btaylor2401 It's just pulling out a constant multiplier, which comes out in front of a summation.…
I am working on a little 2D RTS engine and I am working my way up to dynamic world generation and…
Brian —
Thanks for the update Casey.
I had a feeling something was up. I even watched the beginning aga…
Yes, this was a day when sadly we lost the source recording :( It had to be recovered off of Twi…
xel —
Hey all,
Figured out a quick dead simple way to get custom fonts working in 4coder. Just include…
cubercaleb Since subtraction is anticommutative I don't think that you can make that jump. But I …
cubercaleb btaylor2401 = sum((x*x - 2*x*u + u*u)) / n
= (sum(x*x) - sum(2*x*u) + sum(u*u)) / nSin…
Caleb —
btaylor2401 = sum((x*x - 2*x*u + u*u)) / n
= (sum(x*x) - sum(2*x*u) + sum(u*u)) / nSince subtract…
cubercaleb btaylor2401 The two formulas for standard deviation are equivalent. The advantage of …
Caleb —
btaylor2401 The two formulas for standard deviation are equivalent. The advantage of this formul…
Brian —
Greetings,
Downloading the Latest Source Code (from the link Casey gives us), which is labeled a…
Flyingsand I'm a bit stumped now as to what I can do to make the cache-friendly list even friendl…
Caleb —
btaylor2401 However, your pool allocator aligns to 32 bytes, while malloc does not (iirc, malloc …
Your pdb for executable is fine, because it shows Line 944 for DoNextWorkEntry function. Line num…
Another quick update - I haven't settled on how I'll write the GUI stuff yet, though for now I'…
ernes —
Hello guys,
Hope it's alright to ask this kind of question here.
I've recently moved to another …
So here's a little update on my progress so far.
The main bit of optimization I've done is to m…
Caleb —
ratchetfreak
But reinterpret_cast as defined by C++ must be able to roundtrip as long as all the…
mmozeiko Oh, I see what is the issue - CS_HREDRAW and CS_VREDRAW flags for WNDCLASS style member.…
Oh, I see what is the issue - CS_HREDRAW and CS_VREDRAW flags for WNDCLASS style member. These fl…
mmozeiko On Windows moving or resizing window happens inside internal modal loop: https://msdn.mi…
Okay, that's good to hear. Yea, must be some strange bug. I'm on Windows 10, so I thought maybe t…
On Windows moving or resizing window happens inside internal modal loop: https://msdn.microsoft.c…
ratchetfreak, reinterpret_cast cannot be done from int to float (and back). One of types must be …
Connor —
I don't think that this is a problem with the code. The same thing had me confused but when I cop…
Hi everyone,
I'm current on Day 4 and I ran into an issue. Sorry if I am posting in the wrong f…
The trick is this is an engine, where users can create their own objects, so there is not a finit…
cubercaleb
i am not sure you understand the point of reinterpret_cast (or the problem this is t…
Caleb —
ratchetfreak For rcast you could do something like *((t*)((void*)(&(v))))
i am not sure you…