Indiana Kernick

Results 49 comments of Indiana Kernick

I’m not really sure what to do about this. I don’t really know how virus detection works so I don’t know why it thinks the installer is malicious. I mean,...

It's not possible to change key bindings but the existing bindings were chosen carefully. The idea is that for the most part, you can keep your left hand on the...

I still haven't added the ability to change key bindings but in v0.2.0 I added the ability to zoom by holding down CTRL and scrolling. This is a low priority...

Hey there. I hope you’re finding this project to be useful and informative. If the window is so large that it doesn’t quite fit on the screen, then that could...

I’m sorry. I’m having trouble understanding your problem. Did you edit the file, save the file, and compile? You want the window to be smaller?

The only problem I can see here is that you’re making a mistake with editing the file, saving the file, or compiling. Make sure that after you save the file,...

Did you manage to solve this? Is there something I can do?

In the case where the polygon is defined by the programmer, an assert is desirable. With your proposed changes, that would require changing this ```C++ shape.Set(vertices, count); ``` to this...

The NanoVG API is based on the HTML5 Canvas API. https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D Using the canvas directly would be faster than rasterizing in JavaScript and drawing that onto a canvas.

The code could certainly be modernised. For example, `docopt::value` could be replaced with (or implemented using) `std::variant`. `std::unordered_map` could probably be used instead of `std::map`. There are probably a few...