Adam Griffiths
Adam Griffiths
Content size is currently calculated like this (for vertical alignment). ``` float width = 0.0; float height = 0.0; // calculate contentSize, CCMenuItem *item = nil; CCARRAY_FOREACH(children_, item) { height...
The current master branch is using an old version of raylib which is not API compatible with the latest 3.x branch. The 3.7 branch seems to be working - although...
Responses should also be signed in a similar way to the requests so that client's can verify they are talking to the correct server. Compromise of a server itself would...
This code was originated from before I wrote PEP-8 styled code. Much of it uses weird layouts. We should update the syntax. Also note, some syntax should deviate from PEP-8...
https://pyrr.readthedocs.io/en/latest/api_vector.html Most likely all through the documentation. 
As per #56, remove the automagic decorator and simply convert the parameters to `np.ndarrays` via the `np.asarray` function.
Need to be able to create a matrix / quaternion from 2/3 vectors (forward, up, left/right). As mentioned in #30, pyeuclid has this code From PyEuclid (https://code.google.com/p/pyeuclid/source/browse/trunk/euclid.py) ``` def new_look_at(cls,...
Add return type information to the README for the different interfaces (procedural vs oo). Should help mitigate confusion in future #40