I was starting to follow this Nim/SDL2 tutorial and on part 3 it requires importing the module "basic2d".
Turns out I got an error:
main.nim(3, 8) Error: cannot open 'basic2d'
I couldn't find this module in the docs, so I googled it and found a github page saying the module has been deprecated, and we should use "use `neo` or `arraymancer` or `glm` packages instead."
I later found that basic2d is actually still listed under the math standard libs, but the links (basic3d too) lead to a 404. You guys might want to take care of that.
But I can't find any neo or arraymancer or glm in the standard library, so is there any other lib that I could use as a replacement for basic2d?
You can install any of these by using nimble like this:
nimble install <package>