Hendrik Schwanekamp

Results 21 comments of Hendrik Schwanekamp

Is there any disadvantage of "pass by value and move" over "overload the function for const T& and T&&" at all? It seems to mostly lead to code duplication. Until...

So that would give us: ## in x - read only from x - if _cheap to copy_: `T x`, else: `const T& x` ## copy x - perform operations...

Thanks for the feedback! "sink", "move", "copy", "consume", "retain" all seem to refer to the case "I need input data which I can freely modify (including moving from) without effecting...

So it seems Acceleration offsets are not stored. This code: ``` mpu.setXGyroOffset(220); mpu.setYGyroOffset(76); mpu.setZGyroOffset(-85); mpu.setZAccelOffset(1688); // 1688 factory default for my test chip mpu.PrintActiveOffsets(); ``` results in ``` // X...

It was not moving with gravity down. Well i think it is down. I will try again in different orientations next week. However, it seems even manual setting the offsets...

Thanks for the input. I got back to working on this again and found a workaround for the problem. Same as @t8kana00 my device id was 0x39 I tried to...

Hi all, I am relatively new to Webgl/Three.js but was working with desktop OpenGL before. I was a little surprised that Three.js does not support batching already. This looks great...

Yes I understand that would be a lot of extra work and might not work correctly with other already existing three.js features. Was just an idea I wanted to add...

@buhtzz have not been using backintime for a while, so it is not relevant for me. Not sure if other people still see the problem though.

hmm that is not ideal for sure. Maybe we can move the call to cookie-consent further down in the code? I am not a web-pro and had some trouble myself...