summaryrefslogtreecommitdiff
path: root/src/lib.rs
AgeCommit message (Collapse)Author
2021-01-31Change the curve styleJuan Manuel Tomás
2021-01-30Output better error messages for shader programsJuan Manuel Tomás
2021-01-30Remove intermediate Lerp objectJuan Manuel Tomás
Now polynomials can be created directly from bezier components.
2021-01-30Refactor curve drawing functionalityJuan Manuel Tomás
2021-01-30Optimize lerp creationJuan Manuel Tomás
Now it uses Rc instead of Box, reducing the space and time complexity from O(2^n) to O(n^2).
2021-01-19Make shader sample intervals uniformJuan Manuel Tomás
2021-01-17Fix curve overextending past last control pointJuan Manuel Tomás
2021-01-10Separate project into modulesJuan Manuel Tomás
2021-01-09Implement polynomial gcdJuan Manuel Tomás
This was done to find the common roots between two polynomials.
2021-01-07Initial commitJuan Manuel Tomás
Starting off with a function able to turn recursive linear interpolations into their corresponding polynomial.