Re: [Chicken-users] How to use bezier function in 2d-primitives?

2017-10-26 Thread Matt Welland
On Oct 25, 2017 4:32 PM, "Kooda" wrote: On Tue, 24 Oct 2017 22:15:47 -0700 Matt Welland wrote: > I tried this: > > (use 2d-primitives) > (with-output-to-file "test.csv" > (lambda () > (for-each >(lambda (v) > (print (f32vector-ref

Re: [Chicken-users] How to use bezier function in 2d-primitives?

2017-10-25 Thread Kooda
On Tue, 24 Oct 2017 22:15:47 -0700 Matt Welland wrote: > I tried this: > > (use 2d-primitives) > (with-output-to-file "test.csv" > (lambda () > (for-each >(lambda (v) > (print (f32vector-ref v 0)","(f32vector-ref v 1))) > (bezier->vects

[Chicken-users] How to use bezier function in 2d-primitives?

2017-10-24 Thread Matt Welland
I tried this: (use 2d-primitives) (with-output-to-file "test.csv" (lambda () (for-each (lambda (v) (print (f32vector-ref v 0)","(f32vector-ref v 1))) (bezier->vects (bezier:create (vect:create 0 0)(vect:create 2 5)(vect:create 7 5)(vect:create 10 0) 10 Then load