Skip to content

Commit

Permalink
Adding some jams
Browse files Browse the repository at this point in the history
  • Loading branch information
lucapericlp committed Jan 26, 2024
1 parent 4f68482 commit 7549ce2
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hydra/jam/08-01-2023.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
bpm = 100

await loadScript("https://hyper-hydra.glitch.me/hydra-tap.js")

osc([7, 14, 21, 14], 0.8, beats_(4)).sub(src(o0).rotate(1)).posterize(10, 10).out()
88 changes: 88 additions & 0 deletions hydra/jam/18-01-2023.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
bpm = 134

osc(10, 0.1, 0.5).modulateScale(osc(5, 0.5)).color(1, 0, 0.5)
.mult(
shape(2)
.rotate([1, 2, 3, 2])
.scale([1, 1.25, 1.55, 1.15])
.modulateRotate(osc(10, 0.5))
.scrollX(1.5)
.repeat([3, 1, 4, 2, 5], [2, 4, 8, 10])
)
.blend(
src(o0)
.rotate(0.5)
, 0.5)
.out()

///////////////

bpm = 134

osc(10, 0.1, 0.5).color(1, 0, 0.5)
.mult(
shape(2)
.rotate([1, 2, 3, 2])
.scale([1, 1.25, 1.55, 1.15])
.repeat([3, 1, 4, 2, 5], [2, 4, 8, 10])
)
.blend(
src(o0)
.rotate(1)
, 0.5)
.out()

///////////////

bpm = 140

osc(105)
.color(0.5,0.1,0.8)
.rotate(0.11, 0.1)
.modulate(
osc(10)
.rotate(0.3)
.add(o0, 0.1)
)
.add(
osc(20,0.01,1)
.color(0,0.8,1)
).out(o0)

osc([10, 20, 30],0.01, 0.9)
.color(1,0.7,0.5)
.diff(o0)
.modulate(o1,0.1)
.out(o1)

render(o1)

////////

bpm = 140

osc(105)
.color(0.5,0.1,0.8)
.rotate(0.11, 0.1)
.modulate(
osc(10)
.rotate(0.3)
.add(o0, 0.1)
)
.add(
osc(20,0.01,1)
.color(0,0.8,1)
).rotate(2).out(o0)

osc([10, 20, 30],0.01, 0.9)
.color(1,0.7,0.5)
.diff(o0, 0.9)
.modulate(o1, 0.1)
.rotate(1.5)
.scrollY(0.5, 0.01)
.scrollX(1, 0.16)
.out(o1)

render(o1)

/////////////

0 comments on commit 7549ce2

Please sign in to comment.