SleepProgger

Results 15 issues of SleepProgger

I added following build options to make building as subproject a bit more comfortable. - `agg_BUILD_EXAMPLES` - `agg_BUILD_DEMO` - `agg_BUILD_PLATFORM` - `agg_BUILD_CONTROLS` `agg_BUILD_PLATFORM` and `agg_BUILD_CONTROLS` are forced to true if...

Using lambdas can lead to the model not being usable on other python versions / systems when saving and loading the result as a h5 file (see: https://github.com/keras-team/keras/issues/9595 ). I...

Since there are multiple breaking changes between different onnx versions i wonder which onnx version this project should/is targeting. Slice for example switched from providing the parameter via params to...

It would be nice if the created model would be keras backend agnostic. This can be done by replacing all currently used tensorflow code with `keras.backend` code. I already ported...

This PR mainly exposes the cymunk layers and the offset for BoxShapes (https://github.com/kivy/cymunk/pull/49). This PR will break BoxShapes for user with old cymunk versions (before the above PR) ! It...

There are multiple problems regarding components added by `create_component` / removed by `remove_component`. **Components created via `create_component` aren't removed at the `gameworld.remove_entity` call.** ``` gameworld.clear_entities() system = gameworld.system_manager['position'] ent =...

*Sorry for Wall of text** ## What does this PR do? - Adding 3 game systems to support local coordinates and entity relationships. - Adding an example on how to...

1. The [memory_handler.utils.memrange_iter](https://github.com/kivy/kivent/blob/master/modules/core/kivent_core/memory_handlers/utils.pyx#L59) doesn't properly handle freed entities. It is casting the void pointer to unsigned int and checks for -1 instead of using the value located at that pointer...

It would be nice if the PolyRenderers would expose a `render_mode` property. This way wireframe rendering and other types would be easy to implement. At the moment the render mode...

There are two lines in testDan which uses `format` like: `.format{np.mean(errs)})` that should of course be `.format(np.mean(errs)))`