xxxxxxxxxx
function setup() {
createCanvas(600,600);
background("#46b4c8");
function draw() {
// Çizimlerinizi buraya ekleyin
fill(0);
ellipse(mouseX, mouseY, 50, 50); // Örnek çizim
}
function mousePressed() {
// Ekrana tıklandığında resmi JPG olarak kaydeder
save("screenshot.jpg");
}
drawEye(300, 150, color(255, 200, 50));
drawEye(300, 300, color(255, 100, 100));
}
function drawEye(x, y, irisColor) {
noStroke();
fill(245, 235, 200);
ellipse(x, y, 200, 100);
fill(irisColor);
ellipse(x, y, 100, 100)
fill(0);
ellipse(x, y, 50, 50);
}