]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/ui/pens/gradient/gradient.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / basis / ui / pens / gradient / gradient.factor
index 277ebc564fa411ad834e4b32b982d259a9a2c306..aa916448958496638d3e26dc8612b426830181e5 100644 (file)
@@ -16,7 +16,7 @@ TUPLE: gradient < caching-pen colors last-vertices last-colors ;
 
 :: gradient-vertices ( direction dim colors -- seq )
     direction dim v* dim over v- swap
-    colors length [ iota ] [ 1 - ] bi v/n [ v*n ] with map
+    colors length [ <iota> ] [ 1 - ] bi v/n [ v*n ] with map
     swap [ over v+ 2array ] curry map
     concat concat float >c-array ;