On this page:
svg-def-polyline
8.1 polyline
7.7

8 Polyline

 (require simple-svg) package: simple-svg

procedure

(svg-def-polyline points)  string?

  points : (listof (cons/c natural? natural?))
define a polyline by points list.

8.1 polyline

(let ([polyline
         (svg-def-polyline
           '((0 . 0) (40 . 0) (40 . 40) (80 . 40) (80 . 80) (120 . 80) (120 . 120)))]
      [_sstyle (sstyle-new)])
 
  (sstyle-set! _sstyle 'stroke-width 5)
  (sstyle-set! _sstyle 'stroke "#BBC42A")
  (sstyle-set! _sstyle 'fill "blue")
 
  (svg-use-shape polyline _sstyle #:at? '(5 . 5))
  (svg-show-default))