Skip to content

Commit

Permalink
°+.[><].+°
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaudry committed Mar 27, 2024
1 parent 516f366 commit 522d49c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions p5-experiments/plottable/ikedalines001.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function block() {
xinc = 0.01
yinc1 = 0.1
yinc2 = 0.03
yinc3 = 0.05
yinc3 = 0.09
originx = leftmargin + (actualwidth*0.1) * noise(xoff); xoff += xinc;//*random()
destx = originx+(actualwidth*0.5) * noise(xoff); xoff += xinc;// * random()
x1 = originx
Expand All @@ -64,9 +64,9 @@ function block() {
destx += (actualwidth*0.5) * random()
x1 = originx
x2 = originx
xstep = random(42,84)
xstep = random(42,126)
ystep=topmargin+actualheight* noise(yoff3); yoff3 += yinc3;//*random()
depth=Math.floor(random(84))
depth=Math.floor(random(42,84))
}
}
function credits(){
Expand Down
4 changes: 2 additions & 2 deletions p5-experiments/plottable/plottableframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//h=96*11=1056

var echelle = 1
var w = 816 * echelle
var h = 1056 * echelle
var w = 1122 * echelle
var h = 1587 * echelle
var rightmargin = 0.95 * w
var leftmargin = 0.05 * w
var topmargin = 0.1 * h
Expand Down

0 comments on commit 522d49c

Please sign in to comment.