greweb.me / Plots / 114 "Growing parametric 14-20"

Sourcecode
114/main.rs
Tags
parametric

Another parametric functions. Inspired from plot#111 idea: stacking multiple parametric functions. The parametric used is

let parametric = |t, p| {
  (
    (0.2 + 0.7 * p) * (2. * PI * t).sin()
        + 0.1 * (14. * PI * t).sin(),
    (0.2 + 0.8 * p) * (2. * PI * t).cos()
        + 0.2 * (20. * PI * t).cos(),
  )
};

Sakura Gelly Roll on black A4, revealing artifacts of the paper.

As a generative plotter artist, I use code to generate art (creative coding) and physically create it with pen plotters, which is itself a generative process – each physical plot is a unique variant. I love dualities, like digital vs analog physical, abstract vs figurative, orthogonal vs polar, photo vs noise,...