Miguel Martin

Results 21 issues of Miguel Martin

- [ ] Fix download link on wiki - [ ] Host a copy of the latest docs

enhancement

Some benchmarks would be nice

enhancement

It would be best if I removed the dependency of boost::dynamic_bitset, and instead had a pre-determined amount of component types. I'm not 100% sure how counting the types would be...

enhancement

Such as the one describe here: http://nvie.com/posts/a-successful-git-branching-model/

repo-structure

There is only two tutorials: getting started and using the library. There should be some more tutorials in order for clients to understand how to use the library more.

wiki

Here are the examples to be added: 1. ~~Rendering~~ - An example that shows how to render objects. 2. ~~Animation~~ - An example that shows how to implement simple 2D...

repo-structure

For example: `foo.h`: ```c typedef struct FooImpl* Foo; ``` Should output ```nim discard "forward decl of FooImpl" type Foo* = ptr FooImpl ``` However, instead `c2nim` outputs: ```nim type Foo*...