Christian Brugger

Results 9 comments of Christian Brugger

I looked up the CAIRO documentation and it confirms that inside the cairo buffer pre-multiplied alpha is used: https://www.cairographics.org/manual/cairo-Image-Surfaces.html#cairo-format-t I am sure I am not the only one who wants...

Running into the same problem. I tried the trick with passing `window` to `eventsListenerElement`. However then the svg element reacts to clicks anywhere on the website.

I think this is what is meant: Cubic spline not clamped. This is how it is implemented: ![image](https://user-images.githubusercontent.com/235346/85138125-8fe5a900-b242-11ea-8e05-f24a2e546095.png) Clamped cubic splines. Here the curve touches the first and last control...

Hi, yes, this looks like what I had in mind. Also thanks for the reference to MITER, as it completely explains what is going on. So here is what I...

Thank you. I agree, on a path level given the 4 points this is the only behavior that makes sense. I looked a bit more into SVG, although I don't...

Hello Robert, thank you for your reflection. I agree with you that c++ is extremely complicated in the area of initialization. It is definitely also beyond my understanding in its...

Now thinking a bit more and reading #90, I think we should at least change the `default_exception_policy` to include uninitialized value exception. As currently those are ignore and using `safe`...

Slowly integrating safe_numerics in my project I noticed, I get the same error with `std::chrono::duration`: ```c++ #include #include using Int = boost::safe_numerics::safe; using Duration = std::chrono::duration; int main() { auto...

I understand this is not a simple error message to work on, as gives no real information and it might also not be an easy fix. Regarding `std::chrono` and safe...