[fluxus] anti-aliasing (does it work?)

Alex x37v.alex at gmail.com
Wed Feb 8 22:09:11 PST 2006


Does anti aliasing work for lines? (or anything for that matter).

It doesn't seem to be doing anything here, am i doing something wrong?
 Is there a better way to animate a line?
(clear)
(hint-unlit)
(hint-anti-alias)
(define render
  (let ((t 0) (line (build-line (vector 0 0 0) 0.01 (vector 1 0 0) 0.01)))
    (lambda ()
      (destroy line)
      (set! line (build-line (vector 0 0 0) 0.01 (vector (cos t) (sin
t) 0) 0.01))
      (set! t (+ t 0.01))
      )
    )
  )

(every-frame "(render)")

Thanks,
Alex



More information about the Fluxus mailing list