162e Slice

(meta linear-colour-space: 1)

(define
  coords1 [[-306.440 -420.414] ~ (gen/stray-2d from: [-306.440 -420.414] by: [50 50])
           [74.096 -347.654] ~ (gen/stray-2d from: [74.096 -347.654] by: [50 50])
           [-183.828 -380.454] ~ (gen/stray-2d from: [-183.828 -380.454] by: [50 50])
           [139.696 -188.675] ~ (gen/stray-2d from: [139.696 -188.675] by: [50 50])]

  coords2 [[-44.663 -282.768] ~ (gen/stray-2d from: [-44.663 -282.768] by: [50 50])
           [-329.692 -130.704] ~ (gen/stray-2d from: [-329.692 -130.704] by: [50 50])
           [313.436 448.917] ~ (gen/stray-2d from: [313.436 448.917] by: [50 50])
           [164.377 197.854] ~ (gen/stray-2d from: [164.377 197.854] by: [50 50])]

  coords3 [[-114.835 -305.887] ~ (gen/stray-2d from: [-114.835 -305.887] by: [50 50])
           [236.405 -310.621] ~ (gen/stray-2d from: [236.405 -310.621] by: [50 50])
           [-105.256 -58.435] ~ (gen/stray-2d from: [-105.256 -58.435] by: [50 50])
           [-274.251 -349.727] ~ (gen/stray-2d from: [-274.251 -349.727] by: [50 50])]


  col-1 (col/build-procedural preset: robocop
                              alpha: 0.08)
  col-2 (col/build-procedural preset: chrome
                              alpha: 0.08)
  col-3 (col/build-procedural preset: chrome
                              alpha: 0.08))

(fn (draw)
    (fence (t num: 200)
          (poly coords: [(interp/bezier t: t coords: coords1)
                         (interp/bezier t: t coords: coords2)
                         (interp/bezier t: t coords: coords3)]
                colours: [(col/value from: col-1 t: t)
                          (col/value from: col-2 t: t)
                          (col/value from: col-3 t: t)])))

(fn (render)
    (on-matrix-stack
     (translate vector: [(/ canvas/width 2) (/ canvas/height 2)])
     (repeat/rotate-mirrored fn: (address-of draw)
                             copies: 6 ~ (gen/int min: 4 max: 8))))

(render)