Anders Östlin
Anders Östlin
Ping @altercation are you still alive?

> What would be the use case? The obvious case is a haptic, silent metronome.
No. Still same error.
Temporary workaround is to flip the matrix: ```swift extension CMRotationMatrix { var flipped: Self { var flipped = CMRotationMatrix() flipped.m11 = self.m11 flipped.m12 = self.m21 flipped.m13 = self.m31 flipped.m21 =...
I'll give it a try later today. The hardest part is to write tests since the (core motion) framework types don't have any useful public constructors (I guess that's why...
Sorry, I have not worked on this in a while... Anyway, today I have some new findings: I put a breakpoint inside ```DeviceMotion.init(_ deviceMotion: CMDeviceMotion)```: ``` po deviceMotion QuaternionX -0.000882...
I've created a new PR with just the rotation matrix fix. The pitch/roll is still an issue. I've searched around the we in my quest to understand the quirks of...
I'm also trying to grasp how the timestamps work with rest caches (in my case during seeding). Did you find a solution?