rotate an ellipse without rotating code below? (new to this)

edited February 2016 in Questions about Code

I want to rotate the above ellipse without rotating the ellipse beneath it. I know that i can put the first set of code below the other but there has to be another way right? I know its messy :)

fill(77, 43, 39, 255);
rotate(radians(30));
ellipseMode(CORNER);
ellipse(90, 90, 50, 80);

ellipseMode(CENTER);
fill(225, 206, 183);
arc(200, 160, 200, 200, -PI, 0);

Answers

Sign In or Register to comment.