Answers for "stroke width processing"

2

stroke thickness processing

strokeWeight(1);  // Default
line(20, 20, 80, 20);

strokeWeight(4);  // Thicker
line(20, 40, 80, 40);

strokeWeight(10);  // Beastly
line(20, 70, 80, 70);
Posted by: Guest on March-09-2021
0

stroke processing

stroke(204, 102, 0);
rect(30, 20, 55, 55);
Posted by: Guest on March-09-2021

Browse Popular Code Answers by Language