xxxxxxxxxx
22
let x, y;
let len = 10;
function setup() {
createCanvas(200, 200);
x = width/2;
y = height/2;
}
function draw() {
background(255);
honeyComb();
}
function honeyComb(){
stroke(0);
fill(255);
beginShape();
vertex(x, y);
vertex(x)
}