How to fill/draw lines in ellipse?
in
Programming Questions
•
2 years ago
How i can fill some shape. Now i want to draw lines in ellipse:
- size(500, 500);
background(255);
smooth();
fill(255,255);
stroke(0);
fill(255);
ellipse(250,250,475,475);
for (int y=0;y<height;y+=3) {
line(y,height-height,y,height);
}
1