Nicolas P. Rougier

Results 1788 comments of Nicolas P. Rougier

I'm a bit at loss, especially for the second line. The argument is a list and yet emacs complains it is not. Can you try the same with `emacs -q`...

Which one failed? All of them?

Does it happen if you test with `emacs -q`?

On your last screenshot, do you know why the debug trace ends with `nil nil 127`? If I try: ```emacs-lisp (face-remap-set-base 'default ft) ``` I get ```emacs-lisp Debugger entered--Lisp error:...

Another try (in the terminal): ``` shell emacs -q --eval "(face-remap-set-base 'default 'bold)" ``` You should have an emacs with bold text only. If this does not work, you'll need...

Thanks and sorry for late answer. Thanks for your patch. Will it work on both 27 and upper? If so, can you make a PR?

Please use triple backticks to enclose your code, it makes thing easier to read. For the neighbours count, it depends if you consider the arena to be circular or not.

Thank you for the detailed report. I also noticed the problem with rewrite branch and the wrong colors when switching from light to dark. I'll try to fix it before...

I think this is related to the underlying svg library that may or may not know how to find a specific font.

For the "z-fighting", you need to use polygon offset (https://www.opengl.org/archives/resources/faq/technical/polygonoffset.htm) For the quad/triangles, I think you need to modify your indices such as to draw only quads. To debug, best...