Nikolay Zapolnov

Results 8 comments of Nikolay Zapolnov

@djowel, there was a bug fix into that PR just now. If you are maintaining your own fork, I recommend picking up that fix - it fixes some subtle problem...

Microsoft IntelliMouse used RegisterWindowMessage API to setup and retrieve a global wheel message. You have to make the following call to obtain message ID: > wheel_message = RegisterWindowMessage ("MSWHEEL_ROLLMSG") This...

The message was not handled by MS code, but directly by software that supported mouse wheel. What I mean is that mouse driver just sent this message to the current...

@MikeWW, there seems to be a problem with the `nvg__intersectLine` function in this pull request. On polygons build from straight lines the code sometimes fails to detect an intersection. It...

@MikeWW, generally, current implementation works ok when edges of polygon are parallel to the axes, but when they are not, something bad happens. Here is the one, for example: ```...

@MikeWW, thank you for a quick fix, it seems to work correctly! But there is also a problem with rotated ellipses. Here is an example: ``` nvgSave(vg); nvgBeginPath(vg); nvgTranslate(vg, 145.40129089355f,...

@MikeWW, your commit seems to fix the problem. I was making videos while you did the commit :) Originally the problem only reproduced on Mac. And on Windows in Visual...

Thanks for fixing the bug!