Hi,

Today I started by copying the script on the front page of the Fuxus site (attached, but I don't think it matters). Launching it and hitting F6 to restart the interpreter makes Fluxus crash:

$ fluxus frontpage_script.scm
Welcome to fluxus.
Type (help) for info.
eval: contract violation
  expected: namespace?
  given: #<namespace>

Is there a configuration I missed?

Cheers,
Javier
(clear)

(define (render)
  (with-state
   (hint-none)
   (hint-wire)
   (backfacecull 0)
   (wire-colour #(1 0.25))
   (translate (vector     (* 2 (sin (time)))
                          (* 2 (cos (time)))
                          (* 2 (cos (time)))))
   (rotate (vector     (* 90 (cos (time)))
                       (* 180 (sin (time)))
                       (* 45 (tan (time)))))
   (build-cube)))

(every-frame (render))

Reply via email to