Bart Janssens

Results 162 comments of Bart Janssens

I updated to latest master, but I'm confused as to how the rotation matrix is updated. It seems not to work without the `yield` here: https://github.com/barche/QML.jl/blob/master/example/glvisualize.jl#L22 The same thing happens...

Right, that works! The event loop is indeed yield-free, since it is actually the Qt event loop. I have now a direct example: https://github.com/barche/QML.jl/blob/master/example/glvisualize.jl And one with signals and yield:...

I think @grasph 's workaround is the only way for now. There is currently no way to directly wrap the move constructor, but it seems like it would be a...

This change results in the error: ``` basic_types: Error During Test at /home/runner/work/CxxWrap.jl/CxxWrap.jl/test/basic_types.jl:166 Test threw exception Expression: typeof(a + a) == CxxWrap.CxxWrapCore.julia_int_type(CxxChar) promotion of types CxxChar and CxxChar failed to...

This is a very old version of CxxWrap, on what version of Julia are you trying this?

The example is actually here: https://github.com/barche/MPIArrays.jl/blob/master/test/matmul_mpi.jl You need to set `OPENBLAS_NUM_THREADS` to choose the number of threads.

Sorry, I haven't looked at this package in a long time, I probably won't be able to fix this soon. I would be surprised if it even worked with anything...

Thanks for suggesting this, it is now sort of working, to be demoed tomorrow at JuliaCon ;)

Hi, Do you mean a [TableView](http://doc.qt.io/qt-5/qml-qtquick-controls-tableview.html)? If so, it is usable with a `ListModel`, the so-called roles are the columns in that case. To convert the example to Julia, you...