redweasel

Results 17 comments of redweasel

I would like to raise a concern here. I HATE if the stroke would slightly move every time I release the pen after a stroke! A lot of Software packages...

@bhennion I like how you propose to handle backwards compatibility (though it will potentially leave legacy code in the future codebase) I'm not sure about the idea to just hide...

https://github.com/xournalpp/xournalpp/pull/2729/commits/f5ba9266636aee0942aaf5db9bec3ac083692176 seems to be an unrelated issue. Can you make a Pull Request for that one. It might fix some render issues. Also about your error function. One alternative to...

sweep and prune is just a good/fast scanline algorithm to quickly detect which line segments could intersect (broad phase collision detection). I can see problems with this approach though, when...

Eigen is an open source library for matrix operations. It can do very efficient matrix/vector operations and also solve for eigenvalues. That way you can use the https://en.wikipedia.org/wiki/Companion_matrix to calculate...

@NovaViper @oofnikj Same Laptop, same problem here (L390 Yoga). I would be very interested in knowing which keywords I need to search for to find a replacement for the sensor,...

Can you try to build https://github.com/xournalpp/xournalpp/commit/652d74d317b752517883906b27f9ba282d880d2e and https://github.com/xournalpp/xournalpp/commit/57e156ce4d162c9e4f351d1d20b5c5569e58d85d and tell us the results? Also maybe it's enough to know in which configuration you are zooming. Paired Pages? Multiple columns? Does...

Interesting idea, but really bad color choice... Red means undefined state, Orange means undefined size. Those should not be allowed colors. Maybe instead of making them a certain color, give...

I will add to the `One::one()` example, that any attempt to add const, will be incompatible with BigInt, as they have heap allocated data. On the other hand, have you...

@Rmano there is a function called `onMotionCancelEvent()` in the code which can remove a stroke before adding it to the page. It would be trivial (I think) to turn any...