Richard Hull

Results 146 comments of Richard Hull

Hey @Asakeron, I've implemented the code behind the first two lessons on the `feature/learningwebgl` branch... and made a few small changes to the source on the way - just want...

I was just thinking the same about the draw function, if the method signature is something like: ``` clojure (defn draw! [gl & {:keys [shader-program draw-mode first count attributes uniforms...

Ok, so that's lessons 3 (simple animation), 4 (3d shapes), 5 (texture mapping) implemented. I've made a rough start on a textures namespace and :textures parameter to `draw!` - see...

I've added a `gh-pages` branch, and copied the learningwebgl examples in there, so you can view at http://asakeron.github.io/cljs-webgl/examples/learningwebgl/lesson_01.html

Was wondering about pushing this branch into master as-is? I would've liked to have implemented a few more lessons, but have been stacked out at work so this has been...

I did wonder about keywords, but there will be a cost associated with the lookup function - whereas this'll come for free using namespaces and defs (I'm presuming) as the...

Nice one :+1: I fixed a typo - s/texure/texture/ in one of the cljs file Also, I wonder if namespaces `texture-mag-filter` and `texture-min-filter` should be collapsed into a single namespace...

http://www.regular-expressions.info/unicode.html: > In addition to the standard notation, \p{L}, Java, Perl, PCRE, the JGsoft engine, and XRegExp 3 allow you to use the shorthand \pL. The shorthand only works with...

Is this the `infix` macro or the `from-string` (or both?) would be interested to see the clojure.walk version + how well of a replacement it would be if it is...

That is usage exactly as intended