how to draw over shapes
in
Programming Questions
•
1 year ago
i am new to processing and was wondering if i have this:
triangle(135,250,69,350,201,350);
if(mousePressed){
noStroke();
fill(215,211,2);
ellipse(mouseX,mouseY,30,45);
}
how do i make the ellipse draw over the triangle? it seems if i click over the triangle, the ellipse would not draw over it.
1