xxxxxxxxxx
48
let time = 1;
let timeS = 0.001;
let bigCircleSize = 100;
let bigCirclePosX;
let bigCirclePosY;
let smallCircleSize = 10;
let smallCirclePos;
let synth = new Tone.PluckSynth().toMaster();
let circleRate = 2
Tone.Transport.scheduleRepeat(playSynth, circleRate);
Tone.Transport.start();
function setup() {
createCanvas(400, 400);
bigCirclePosX = width/2;
bigCirclePosY = height/2;
smallCirclePos = createVector(1, 1) ;
ball1 = new Orbital(width/2, height/2, 300, circleRate);
}
function draw() {
background(220);
ball1.display();
ball1.move();
}
function playSynth(time){
synth.triggerAttackRelease(112, '2n', time);
ball1.trigg();
}