Hydra Code:
let p5 = new P5()
s0.init({src: p5.canvas})
p5.hide()
// No need for setup
p5.noFill()
p5.strokeWeight(10)
p5.stroke(255)
// Shape positions
let shapePositions = [
{ x: p5.width / 4, y: p5.height / 2, size: 200 },
{ x: (p5.width / 4) * 3, y: p5.height / 2, size: 200 }
]
p5.draw = () => {
p5.background(0)
// First triangle
p5.triangle(
shapePositions[0].x, shapePositions[0].y - shapePositions[0].size / 2,
shapePositions[0].x - shapePositions[0].size / 2, shapePositions[0].y + shapePositions[0].size / 2,
shapePositions[0].x + shapePositions[0].size / 2, shapePositions[0].y + shapePositions[0].size / 2
)
// Second square
p5.rectMode(p5.CENTER);
p5.square(shapePositions[1].x, shapePositions[1].y, shapePositions[1].size);
if (cc[1] == 1) {
p5.triangle(
p5.width / 2, p5.height / 2 - (400 * cc[0] + 200 * p5.noise(cc[0])) / 2,
p5.width / 2 - (400 * cc[0] + 200 * p5.noise(cc[0])) / 2, p5.height / 2 + (400 * cc[0] + 200 * p5.noise(cc[0])) / 2,
p5.width / 2 + (400 * cc[0] + 200 * p5.noise(cc[0])) / 2, p5.height / 2 + (400 * cc[0] + 200 * p5.noise(cc[0])) / 2
)
} else {
p5.square(
p5.noise(cc[0] * 2) * p5.width,
cc[0] * p5.height,
200
)
}
}
src(s0).modulate(osc(15, 0.3, 1.2), 0.1).mult(noise(2, 0.8)).diff(src(o1)).out();
src(s0).modulate(gradient().rotate(1.5), 0.5).mult(osc(8, 0.2, 2)).diff(src(o1)).out();
src(s0).modulate(noise(150, 1.2), 0.7).mult(osc(25, 5, 30)).diff(src(o1)).out();
// Feedback effects
src(s0).modulate(noise(4, 1.5), 0.6).mult(osc(1, 5, 1)).out(o2);
src(o2)
.modulate(src(o1).add(solid(0, 0), -0.5), 0.005)
.blend(src(o0).add(o0).add(o0).add(o0), 0.1)
.out(o2)
render(o2)
hush()
Tidal Code:
-- Sound
d1 $ s "bleep" # room 0.6 # gain 1
d2 $ s "~cp" # gain 1.2 # room 0.3
d3 $ sometimes (# velocity 0.6) $ iter 4 $ struct "<t(4,8) t(4,8,1)>" $ s "cp"
d4 $ s "superpiano" >| note (scale "major" ("[1 3 2 8 9 6]") + "8") # room 0.4 #gain 2
-- CC
d5 $ whenmod 32 12 (# ccn ("<t(4,8) t t(4,8,1) t>"))
$ ccn "0*64" # ccv (slow 3 (range 10 127 tri))
# s "midi"
d6 $ whenmod 32 12 (# ccv "127") $ ccn "1*128" # ccv 0 # s "midi"
hush
Also Hi,
Apologies for uploading this late. Laptop was not cooperating.