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.
Jack Mott
I guess a worse case is when you want to do something like: 1 2 3 4 5 6 7 8 9 10for( in…
»
Jesse
I think this is a bug introduced by Visual Studio 2015 Update 3. Assuming you've upgraded.
»
Barret Gaylor
This one has got me stumped. I am trying to step through my render_group code in visual studio, b…
»
Jack Mott
Yeah return values from the middle of functions is not possible in the way you are used to becaus…
»
Ben Visness
I think it has huge potential, but from what I've seen, it needs more direction. It seems like th…
»
Ben Visness
Well, if you're looking for something *really* easy to get started, the Stanford PLY format is de…
»
Sean Barrett
Re: languages which prioritize functional but allow other stuff, many many years ago I tried Ocam…
»
graeme
Here's a quote from the start of Michael Abrash's graphics programming black book. The first chap…
»
Mārtiņš Možeiko
There's glTF format from Khronos: https://github.com/KhronosGroup/glTF https://github.com/Khronos…
»
Pete
Pseudonym As a non-answer: Do not try to parse COLLADA yourself. In fact, don't use COLLADA unles…
»
Timothy Wright
I am really starting to like the Handmade Network and the people it attracts. This is the first …
»
Doeke
Thanks! Installing the font did the trick!
»
Jack Mott
I find internet arguments about it tend to get tautological. That is, any early optimization tha…
»
erpeo93
Connor_Rentz Sounds like a big undertaking! Sadly, there are two reasons I cannot do this. 1. To…
»
erpeo93
Thank you guys, I can't wait to start developing the game, I really hope to find someone to share…
»
Matt Mascarenhas
ZedZull What does the process of optimization look like? I haven't got to the stage of optimising…
»
drjeats
I'm sure lots of folks here have seen this retweeted around: http://www.insomniacgames.com/intro…
»
Andrew Bromage
As a non-answer: Do not try to parse COLLADA yourself. In fact, don't use COLLADA unless you have…
»
ratchetfreak
There is also the interquake model format: http://sauerbraten.org/iqm/
»
Bill Strong
You might try Open Game Exchange Format. Read more about it at http://opengex.org/. It can handl…
»
Andrew Bromage
timothy.wright I have yet to find a single example of a function program out in the wild that was…
»
Jack Mott
Right, which is why I was talking up languages that don't do anything to enforce purity of functi…
»
Andrew Bromage
ratchetfreak In other words it's not premature when you have investigated and found that the code…
»
Abner Coimbre
It would be very remiss of me to not quote John Carmack here: Carmack My pragmatic summary: A la…
»
ratchetfreak
It's funny because the premature optimization quote is part of a larger statement that actually e…
»
Jay Waggle
Hi all, To better understand optimization in programming, I'd like to ask some general questions…
»
Timothy Wright
The problem that I've always had with functional programming is its stateless nature. Functions …
»
strangezak
I dont use emacs anymore, but i think you might have to get the Liberation Mono font for it to lo…
»
Connor
I'm pretty sure Casey uses an older version of emacs, you could try downgrading to it and maybe t…
»
Jack Mott
Task: take an array, return the sum of the square of all the items Obvious C code that ends up A…
»