Any GIMP 3.2 script-fu scheme developers out there? I have been working through updating a script from the 2.0 era. I keep gettingError: in script, expected type: vector for argument 2 to gimp-pencilSo, I rewrote the code to try the new vector style init and I still get the error.(let* ( (center (hex-center x y)) (num-strokes 2) (coords (make-vector (* num-strokes 2))) ) (vector-set! coords 0 (car center)) (vector-set! coords 1 (cadr center)) (vector-set! coords 2 (car center)) (vector-set! coords 3 (cadr center)) (gimp-pencil drawable num-strokes coords))I even went online, found a tutorial, and when I run that code it gives the same errorhttps://renenyffenegger.ch/notes/design/graphic/GIMP/Fu/Script/scripts/simple-demonstrations/indexscroll down to second code snippet to draw a line.#gimp #scheme #programming