nsch0e
nsch0e
same problem here: using the standard camera with maixduino (gc0328) doesnt work with arduino example, but works in microPython. omnivision ov2640 camera works with both sketches. So probably there is...
For anyone else stumbling over this helpful example (thanks!). Using pow allows for frational steps in MouseWheel and results in smoother zooming atleast on my touchpad. ```c++ if (io.MouseWheel !=...
what is the benefit of waiting until the wheel has accumulated 1 full step? (I have no problems using each tiny step) Also: is there a way to use a...
> 1. Generate unique list of candidate expansions for the base pcube. This is just the union of all the cubes in the base polycube shifted +/-1 for all axis?...
Ok, I can follow 😊 so each permutation is a subset of the expansion list with k elements for N+k. So there should be (E choose k) permutations and E...
I think we could also look at how much overhead the unordered set adds. Since we are only adding elements to the set and never removing any (except clear), we...
A few thoughts: > * Reduced memory use for Cube struct (was 16-bytes, now 8-bytes) Perhaps a check if the upper bits in pointers are used would prevent segfaults and...
I did not have any segfaults but thought it would be easy to detect if we are truncating important bits from the pointers. Perhaps an extra function to do the...
Center of Mass should be relatively easy to compute: just add all coordinates of ones (there should be N) and divide by N (number of cubes in polycube). Your idea...
Perhaps I'm oversimplifying things, but the general goal is to always select one of the 24 rotations to identify the set of 24, am I right? In my C++ implementation...