move to right

// move to right

var cx;
var cy;
var diam = 48;

function setup() {
  var cnv = createCanvas(400, 300);
  cnv.position(60, 200);
  cx = width/2;
  cy = height/2;
} //setup

function draw() {
  background(192);

  strokeWeight(1);
  stroke(0);
  fill(255, 0, 0);
  cx = cx + 1;
  ellipse(cx, cy, diam, diam);
} //draw