Alexis Breust

Results 20 issues of Alexis Breust

Added PIC (Position Independent Code) to the generation of the library so that it can be included in others.

Currently, yoga is not able to import a glb, as the check for the format wants to make sure that the filename ends with `.glb` (and it does not because...

enhancement

Some files like FBX support lights and cameras, but these are not always useful. Assimp supports an importer post-process called `aiProcess_RemoveComponent` and configured with: ```c++ importer.SetPropertyInteger(AI_CONFIG_PP_RVC_FLAGS, aiComponent_CAMERAS | aiComponent_LIGHTS); ```...

enhancement

In `yoga/model/assimp.cpp`, `extract_image_nodes` does not extract already embedded textures, they are ignored. Keeping the very same convention than assimp, we could just fill `imageNode` with: ```c++ auto imageNode = new...

enhancement

```javascript var slider = new photonui.Slider({ value: 0.5, min: 0, max: 10, step: 0.5, decimalDigits: 2, }); photonui.domInsert(slider, "demo"); ``` ## Expected result A new slider with current value set...

bug
in progress

See [example on JSFiddle](https://jsfiddle.net/tmLsvfy2/2/). ![screenshot_1](https://cloud.githubusercontent.com/assets/8821452/19926244/c95b1e68-a0f3-11e6-8b63-c75a048b6608.png) ![screenshot_2](https://cloud.githubusercontent.com/assets/8821452/19926245/c95db4e8-a0f3-11e6-92f2-d0e0b59be7c9.png)

One nice feature would be to allow disabling widgets (greyish look + no event).

enhancement

- RNS Dixon solver (use `Method::Dixon` with `multiModLifting = true`) ; - Hadamard bound changed to be exact value (so that ratrecon can work nicely on small matrices).

Might be because of `applyM` (in apply.h) which handle numbers below 53 bits differently. ```C++ #include using namespace LinBox; int main(void) { using Ring = Givaro::ZRing; using Matrix = DenseMatrix;...

bug