Anyway behold:
(define test?
(lambda (a)
(cond
((eq? a #t) 'hello)
(else 'goodbye))))
Yesterday I played with the map editor program a bit more. I'm having trouble transforming the device for my various swap chains so that's something I need to play with. (this looks like a reasonable place to start) I also added a moving camera to my tile renderer to make sure there are no artifacts. It works fine. So I documented my simple rendering stuff - the RenderPrimitives library that handles batching. Time to find another suspect for the artifacts.
2 comments:
The Scheme syntax looks annoying :D
So many brackets.. and on the same line... eww.
Primitives. Not Primatives ;)
Haha my library is actually called "RenderPrimatives" :D so I least I mispell consistently!
That's something I'll have to change :D
I think eventually you learn not to see the brackets. In emacs I have it so everytime I open a bracket, it automatically adds the closing one and puts my cursor in the middle.
Post a Comment