xxxxxxxxxx
26
function draw(){
var c=document.getElementById("myCanvas");
var ctx=c.getContext("2d");
ctx.beginPath();
ctx.moveTo(20,20);
ctx.bezierCurveTo(20,100,250,10,200,20);
ctx.moveTo(200,20);
ctx.bezierCurveTo(200,20,80,0,10,20);
startGrad = createVector(20,20);
endGrad = createVector(200,100);
//ellipse
var gradient = ctx.createLinearGradient(startGrad.x, startGrad.y, endGrad.x, endGrad.y);
// var choice = floor(random(2));
var firstColor = '#6441A5';
var secondColor = '#43cea2';
gradient.addColorStop(0, firstColor);
gradient.addColorStop(1, secondColor);
ctx.fillStyle = gradient;
ctx.fill();
// curveTightness(0.3);
}