Question: Refer to this code in p 5 . js that makes a simple drawing program. What size is the ellipse? sketch.js } function setup (

Refer to this code in p5.js that makes a simple drawing program. What size is the ellipse?
sketch.js
}
function setup(){ createCanvas (500,500); background (100,100,100);
5
function draw(){
7 stroke (255,255,255);
8 fill (255,255,255);
9 ellipse(mouseX, mousey, 70,70);
10
a circle of 70 pixels in diameter
mouseX width by mouseY height
a circle of 255 pixels in diameter
a circle of 500 pixels in diameter
an ellipse of 255 pixels width by 70 pixels height
an ellipse of 70 pixels width by 255 pixels height
 Refer to this code in p5.js that makes a simple drawing

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!