Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

var CHX = 0, CHY = 0;

function coords(x,y){

var _x = !CHX ? x ? x : CHX : CHX,

_y = !CHY ? y ? y : CHY : CHY;

fill(255);

rect(_x, _y, 50, 40);

fill(0);

textSize(16);

text("x:"+mouseX+"\ny:"+mouseY, _x+5, _y+15);

function setup() {

// ваш код

createCanvas(500,500);

addEventListener("click", function(){

console.log("x:"+mouseX+",y:"+mouseY);

});

addEventListener("contextmenu", function(a){

a.preventDefault();

CHX = mouseX;

CHY = mouseY;

});

function draw() {

// ваш код

background(220,220,220);

fill(0, 255, 255)

rect(0,157,500,157)

fill(224, 255, 255)


rect(0,312,500,500)

fill(0,191,255)

ellipse(220,209,231,30)

line(0,313,500,313)

fill(255, 140, 0)

triangle(190,275,172,313,195,313)

fill(255, 140, 0)

triangle(267,282,265,313,288,313)

fill(0)

triangle(243,189,243,202,269,172)

fill(0,0,0)

triangle(227,128,169,293,300,293)

fill(255,255,255)

triangle(242,164,211,292,300,293)

fill(0,0,0)

ellipse(226,133,70)

fill(255)

ellipse(239,127,20)

fill(0);

ellipse(239,127,10)

fill(255,140,0)

triangle(256,128,253,143,277,138)

fill(0)

triangle(243,208,243,227,280,205)

fill(0, 191, 255)

triangle(500,0,380,313,500,313)

fill(0)

text("Cosovan Vladislav TI-229", 119, 411, 362, 411)

coords();

You might also like