Matti

Results 71 issues of Matti

Is the syntax in some parts of alea the best possible? I'm finding that it's a bit "odd" to have to write, e.g.: `rng.mean(a)` to get the mean of distribution...

I am confused about the package imports. Coming from Python, I am finding it a bit messy to have to do a plethora of imports, whose purposes are not clear...

How can I create more continuous boundary for the returned polygon? There are a lot of spaces between the points that are returned with concavity=1. But I want the boundary...

#42 The following bug occurs when including https://github.com/AlloSphere-Research-Group/Gamma (simplegamma branch) with https://github.com/mbrucher/AudioTK using VS2013 (platform toolkit v120). So, ``` #include < ATK/Core/InPointerFilter.h > #include < ATK/Core/OutPointerFilter.h > #include < ATK/Dynamic/AttackReleaseFilter.h...

I'm trying to install futhark, but I run into the issue of fulfilling these instructions: https://github.com/PMunch/futhark#installation There is no information about where libclang.lib should be located with default Ubuntu installation.

I was interested in trying this for some interesting C/C++ libraries, such as: https://github.com/libLAS/libLAS But the documentation is very limited in explaining what are the preferred approaches for libraries larger...

Upon opening the supplied .jucer in the zip file in ProJucer, the Build panel gives the error: `'z_libpd.h' file not found` Wonder if this is because my OS is supposedly...

My Jekyll Bootstrap install's (fresh install) theme seems to break in posts. Such as the 'jekyll-introduction' post. This also possibly happens only in Firefox, I tried Safari and it displays...

Where can I ask/discuss implementational ideas/details related to this project?

Consider: ``` ... #define WINDOW_WIDTH 800 #define WINDOW_HEIGHT 600 ... ``` ``` ... if (nk_begin(ctx, "BareMusic", nk_rect(0, 0, WINDOW_WIDTH, WINDOW_HEIGHT), NK_WINDOW_BORDER|NK_WINDOW_NO_SCROLLBAR|NK_WINDOW_TITLE)) { nk_layout_row_dynamic(ctx, 100, 1); if (nk_group_begin(ctx, "1", NK_WINDOW_BORDER |...