gilgamec
gilgamec
At the moment, the only thing we have access to in a collision handler is the normal vector and the colliding _bodies_ (not shapes). There's more information available from the...
I noticed that the test specifications for e.g. `LAB` use the same `Abritrary` instance as others: ```haskell instance (Elevator e, Random e, Illuminant i) => Arbitrary (Color (LAB (i ::...
Haddock comments in `#fun` commands are passed on to the generated file, so that imported function arguments can be documented. Is it possible to do the same for imported `enum`s?...
The `#enum` binding can bind named `enum`s by name, or anonymous `enum`s by referencing one of the values. However, it cannot reference anonymous `enum`s which are defined within a struct...
The `Elt` class includes `Float`s, while they `PrintDense` class works only for things over `Double`s. This means that some functions, like `lu`, which requires only `Elt`s, work for matrices of...
It'd be useful to split the operations into a typeclass, mtl-style; then we could (for instance) test with the `IntMap` version but use an `ST`-based monad in production. I'm guessing...