Hello there
Does anybody knows of a library in lisp to deal with cartesian coordinates system?
Regards,
cartesian coordinates system
Re: cartesian coordinates system
What operations are you looking for? How many dimensions? What does this library integrate with?
On one hand, there are simple roll-your-own solutions, such as the complex coordinate system in SICP.
https://mitpress.mit.edu/sites/default/ ... -H-17.html
On the other hand, there are complex vectorized solutions, such as for SSE or GPU acceleration.
https://github.com/angavrilov/cl-simd
https://github.com/angavrilov/cl-gpu
Most graphics libraries have their own 2D or 3D vector library.
On one hand, there are simple roll-your-own solutions, such as the complex coordinate system in SICP.
https://mitpress.mit.edu/sites/default/ ... -H-17.html
On the other hand, there are complex vectorized solutions, such as for SSE or GPU acceleration.
https://github.com/angavrilov/cl-simd
https://github.com/angavrilov/cl-gpu
Most graphics libraries have their own 2D or 3D vector library.
Re: cartesian coordinates system
I need to check length of rod from four-link mechanism kinematic analysis, so I need 2D. And I assume I need functions to deal with angles of movement of crank and rocker arm. So to speak.