Font size
WorksheetsProcessing 01 - MCSHS DIG07/DIG08
Total questions: 14
Worksheet time: 8mins
What character tells Processing that it's reached the end of a line
!
;
/
}
Which command would you use to draw a circle
round();
circle();
shape();
ellipse();
RGB stands for
Red, Green, Blue
Really Good Boy
Right, Greater Than, Binary
Red, Grey, Brightness
Which command changes the colour of the outlines of shapes?
strokeWeight();
lineColor();
fill();
stroke();
Which command changes the colour on the inside of a shape?
fill();
color();
colour();
insideColor();
If we used the command:
size(300,600);
What shape would our canvas be?
A Square
A wide rectangle
A tall rectangle
The 'y' axis runs vertically (up and down)
True
False
Would this command successfully draw a rectangle:
rect(100,100);
Yes
No
Processing adds shapes to the canvas in the order in which they appear in the code.
True
False
rect(100,200,300,400);
How wide would this rectangle be?
(a)
void (a) (){
rect(100,100,100,100);
}
If I want my shape to follow the left-to-right position of my mouse, what keyword do I need to use?
ellipse
mouseY
mouseX
banana
Which of these is a correct way to change the colour of a shape
fill(55FF6G)
fill(100,255,80);
fill(#55FF65);
colour('red');
What does strokeWeight(); control?
How much your sketch weighs.
How far a shape is from the top of the canvas.
How thick the outline of shapes are.
Which shape is on top.
