Hola<br>
<br>
    Fluxus is fantastic, congratulations!!!<br>
<br>
    I'm new in Fluxus, and in scheme too (two weeks
ago). I have compiled all the dependency libs, and buil fluxus 0.14 in
openSuse and don't work, after, I installed a rpm pck with fluxus 0.15
and it works.<br>
<br>
    I have some questions:<br>
    How can I make to download the lastest source code?<br>
    Is posible to build and use the video suport in
fluxus 0.15? That seems to be a great feature and I don't know to much
about scheme for configurations.<br>
<br>
    Some problems:<br>
    Running a deep recursive script (or erroneous and
infinitely recursive scrpits in other ingrate cases) hang my machine
and I can't kill the program because no input (keyboard or mouse) is
posible (a busy problem). The scheme information to the REPL in the
scratchpad also take a lot of time when report recursive errors.<br>
    I have made some fractus experiments (maybe the
problem is because a fractus point of view is -maybe- oposite to
fluxus;), and here is the code that hang the computer with for eg.
(render 10 4). With every-frame and draw-sphere the result is similar.<br>
<br>
; fractus.scm<br>
<br>
(clear)<br>
(clear-colour (vector 0 0 0))<br>
<br>
(colour (vector 0 1 0))<br>
<br>
(define (render n f)<br>
    (cond ((not (zero? n))<br>
        (build-sphere 10 10)<br>
        (scale (vector 0.5 0.5 0.5))<br>
<br>
        (with-state<br>
            (translate (vector f 0 0))<br>
            (render (- n 1) f)<br>
        )<br>
<br>
        ; duplicated or maybe useless spheres<br>
        (with-state<br>
            (translate (vector (* -1 f) 0 0))<br>
            (render (- n 1) f)<br>
        )<br>
<br>
        (with-state<br>
            (translate (vector 0 f 0))<br>
            (render (- n 1) f)<br>
        )<br>
<br>
        (with-state<br>
            (translate (vector 0 (* -1 f) 0))<br>
            (render (- n 1) f)<br>
        )<br>
<br>
        (with-state<br>
            (translate (vector 0 0 f))<br>
            (render (- n 1) f)<br>
        )<br>
<br>
        (with-state<br>
            (translate (vector 0 0 (* -1 f)))<br>
            (render (- n 1) f)<br>
        )<br>
    ))<br>
)<br>
<br>
(render 4 4)<br>
;(render 4 40) ; for a little universe<br>
;(render 10 4) ; for a hang<br>
<br>
; end of fractus.scm<br>
<br>
<br>
    I'm musician, and I don't speak English so good, sorry for both :-)<br>
<br>
Thanks for all<br>
Lucas<br>
<br>