We are currently in the process of converting the website to the new design. Some pages, like this one, are still broken. We appreciate your patience.
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.…
»
mojobojo
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…
»
Casey Muratori
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…
»
Andrew Chronister
cubercaleb Since subtraction is anticommutative I don't think that you can make that jump. But I …
»
Bryan Taylor
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…
»
Bryan Taylor
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…
»
Bryan Taylor
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 …
»
Mārtiņš Možeiko
Your pdb for executable is fine, because it shows Line 944 for DoNextWorkEntry function. Line num…
»
xcodedave
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 …
»
Flyingsand
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…
»
Banehallow
mmozeiko Oh, I see what is the issue - CS_HREDRAW and CS_VREDRAW flags for WNDCLASS style member.…
»
Mārtiņš Možeiko
Oh, I see what is the issue - CS_HREDRAW and CS_VREDRAW flags for WNDCLASS style member. These fl…
»
Banehallow
mmozeiko On Windows moving or resizing window happens inside internal modal loop: https://msdn.mi…
»
Banehallow
Okay, that's good to hear. Yea, must be some strange bug. I'm on Windows 10, so I thought maybe t…
»
Mārtiņš Možeiko
On Windows moving or resizing window happens inside internal modal loop: https://msdn.microsoft.c…
»
Mārtiņš Možeiko
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…
»
Banehallow
Hi everyone, I'm current on Day 4 and I ran into an issue. Sorry if I am posting in the wrong f…
»
Jack Mott
The trick is this is an engine, where users can create their own objects, so there is not a finit…
»
ratchetfreak
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…
»