Dmitry Matveyev

Results 95 comments of Dmitry Matveyev

Shorter bug reproduction: 1. Insert nodes 12, 15, 47, 50, 60 2. Remove 15 According to [this visualisation](https://www.cs.usfca.edu/~galles/visualization/RedBlack.html) before delete it should look like: ![image](https://user-images.githubusercontent.com/20167110/172063145-48197eec-b6d2-4e12-90f7-d0d9397dfb71.png) and after like this ![image](https://user-images.githubusercontent.com/20167110/172063152-ffdfef73-4129-45e2-8a54-1b1ab549f053.png)...

Как насчет [scribble](https://docs.racket-lang.org/scribble/index.html) или надстройки над ним, [pollen](https://docs.racket-lang.org/pollen/)? Это обещает быть более интересным занятием, чем перевод в обычный маркдаун.

You can use core_window_flags example as a reference https://github.com/greenfork/nimraylib_now/blob/3207f457be0f3204df15a1367111159d3c888c4c/examples/core/core_window_flags.nim#L37 adding ` or WindowTransparent` to the list activates transparency. For me it is also black screen. You can check the C...

``` cd examples/shapes nim r shapes_bouncing_ball.nim ``` compiles and runs for me alright. I see that you have it in your own file `game.nim`. I think that maybe you could...

This looks good! Do you have any insight on how stable this experimental feature is? It is at least in the main Nim manual, not the experimental one. Do you...

I found this thread https://github.com/nim-lang/Nim/issues/8066, looks like `pure` pragma is broken. So it seems as a question which feature is more stable. A good idea would probably be to go...

> It's in the experimental [manual](https://nim-lang.org/docs/manual.html#types-overloadable-enum-field-names) The link you have referenced is to the normal manual. The experimental manual is https://nim-lang.org/docs/manual_experimental.html > According to https://forum.nim-lang.org/t/8404#54227 it looks promising. For `.pure`...

Hi, I think you can take a look at Troubleshooting section of readme https://github.com/greenfork/nimraylib_now#windows-error-the-application-was-unable-to-start-correctly-0x00000007b

> Also, adding mingw\bin to the system path, rebooting, recompiling with --passC:"-static" --passL:"-lpthread", and running again on a different Windows 10 machine did not allow me to run without the...

So far this is the best option: bundle `libwinpthread-1.dll` together with the exe which is located in `C:\Program Files\nim-1.6.2\dist\mingw64\bin` for default installation of Nim v1.6.2. >Now it runs when I...