Skip to content

Instantly share code, notes, and snippets.

@Idorobots
Created February 16, 2013 20:37
Show Gist options
  • Save Idorobots/4968636 to your computer and use it in GitHub Desktop.
Save Idorobots/4968636 to your computer and use it in GitHub Desktop.
Splines in Scheme-like
(define (splines-1 x X Y)
(foldl (lambda (((X0 . Y0) . (X1 . Y1)) result)
(if (<= X0 x X1)
(+ Y0 (* (/ (- Y1 Y0)
(- X1 X0))
(- x X0))
result)))
(let ((zipped (zip X Y)))
(zip zipped (cdr zipped)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment