From 570ba27d94c8a2b0a3303a583a3d819c1d73b649 Mon Sep 17 00:00:00 2001 From: Alexander Green Date: Fri, 22 Nov 2013 14:09:00 -0800 Subject: [PATCH] sinesphere --- AlexGreen.pde | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/AlexGreen.pde b/AlexGreen.pde index 99a71df..e44ff70 100644 --- a/AlexGreen.pde +++ b/AlexGreen.pde @@ -61,7 +61,7 @@ class SineSphere extends SCPattern { addModulator(ybounce= new SinLFO(model.yMax/3, 2*model.yMax/3, 240000)).trigger(); //bounce.modulateDurationBy //addModulator(bounceamp); //ybounce.setMagnitude(bouncerate); - addModulator( vibration = new SinLFO( modelrad/10 - vibration_magnitude , modelrad/10 + vibration_magnitude, vperiod)).trigger(); //vibration.setPeriod(240000/lx.tempo.bpm()); + addModulator( vibration = new SinLFO( modelrad/15 - vibration_magnitude , modelrad/15 + vibration_magnitude, vperiod)).trigger(); //vibration.setPeriod(240000/lx.tempo.bpm()); } @@ -100,7 +100,7 @@ class SineSphere extends SCPattern { // } - +public int c1c (float a) { return round(100*constrain(a,0,1)); } void setVibrationPeriod(double period){ // to-do: make this conditional upon time signature @@ -129,6 +129,13 @@ float distfromcirclecenter(float px, float py, float pz, float f1x, float f1y, f //if (q.x > f1xcenter ) {return 140 ;} //else {return 250;} } + + // float noisesat(PVector q) { + + + // return noise() + + // } color spheryvalue (PVector p) { circlecenter.set(this.f1xcenter, this.f1ycenter, this.f1zcenter); -- 2.34.1