]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/rosetta-code/bitmap-bezier/bitmap-bezier.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / rosetta-code / bitmap-bezier / bitmap-bezier.factor
index e223daca9265174b588e4e3b5979051df722d076..e65a13aab7f72ae9f637ef2ee752167c636217ea 100644 (file)
@@ -26,7 +26,7 @@ IN: rosetta-code.bitmap-bezier
 : points-to-lines ( seq -- seq )
     dup rest [ 2array ] 2map ;
 
-: draw-lines ( {R,G,B} points image -- ) 
+: draw-lines ( {R,G,B} points image -- )
     [ [ first2 ] dip draw-line ] curry with each ;
 
 :: bezier-lines ( {R,G,B} P0 P1 P2 P3 image -- )