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.
This one has got me stumped. I am trying to step through my render_group code in visual studio, b…
Yeah return values from the middle of functions is not possible in the way you are used to becaus…
I think it has huge potential, but from what I've seen, it needs more direction. It seems like th…
Well, if you're looking for something *really* easy to get started, the Stanford PLY format is de…
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…
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…
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!
I find internet arguments about it tend to get tautological.
That is, any early optimization tha…
Connor_Rentz Sounds like a big undertaking! Sadly, there are two reasons I cannot do this.
1. To…
Thank you guys, I can't wait to start developing the game, I really hope to find someone to share…
ZedZull What does the process of optimization look like?
I haven't got to the stage of optimising…
I'm sure lots of folks here have seen this retweeted around:
http://www.insomniacgames.com/intro…
As a non-answer: Do not try to parse COLLADA yourself. In fact, don't use COLLADA unless you have…
There is also the interquake model format: http://sauerbraten.org/iqm/
You might try Open Game Exchange Format. Read more about it at http://opengex.org/.
It can handl…
timothy.wright I have yet to find a single example of a function program out in the wild that was…
Right, which is why I was talking up languages that don't do anything to enforce purity of functi…
ratchetfreak In other words it's not premature when you have investigated and found that the code…
It would be very remiss of me to not quote John Carmack here:
Carmack My pragmatic summary: A la…
It's funny because the premature optimization quote is part of a larger statement that actually e…
Hi all,
To better understand optimization in programming, I'd like to ask some general questions…
The problem that I've always had with functional programming is its stateless nature. Functions …
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…
Task: take an array, return the sum of the square of all the items
Obvious C code that ends up A…