Skip to content

Commit

Permalink
Update Converter_CMYK_Circles.java
Browse files Browse the repository at this point in the history
  • Loading branch information
i-make-robots committed Feb 10, 2025
1 parent bb7b369 commit cddbab7
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,6 @@ private void circlesAlongLine(double x1, double y1, double x0, double y0, Transf
private void drawCircle(double x,double y,double r) {
double circumference = Math.ceil(Math.PI*r*2.0);
Turtle t = new Turtle();
t.history.clear();
t.setColor(turtle.getColor());
t.jumpTo(x+r,y+0);
for(int i=0;i<circumference;++i) {
Expand Down

0 comments on commit cddbab7

Please sign in to comment.