summaryrefslogtreecommitdiff
path: root/src/lerp.rs
AgeCommit message (Collapse)Author
2021-01-30Remove intermediate Lerp objectJuan Manuel Tomás
Now polynomials can be created directly from bezier components.
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-17Refactor function lp into lerp method to_polyJuan Manuel Tomás
2021-01-17Remove dead codeJuan Manuel Tomás
2021-01-17Fix fragment shader bug on empty curvesJuan Manuel Tomás
2021-01-16Run cargo fmt for the first timeJuan Manuel Tomás
2021-01-14Calculate poly degree on newJuan Manuel Tomás
2021-01-11Refactor PolyJuan Manuel Tomás
2021-01-11Implement add and sub for PJuan Manuel Tomás
2021-01-10Separate project into modulesJuan Manuel Tomás