I would like to know how do i thicken the line of the arc drawn using drawArc?
I would like to know how do i thicken the line of the arc drawn using drawArc?
hi,
You can't able to thick the line or arc.But there i one way
example:
g.setColor(0);
g.drawArc(1, 1,getWidth()/2,getHeight()/2, 0, 90);
g.drawArc(0, 0,getWidth()/2,getHeight()/2, 0, 90);
g.drawArc(-1, -1,getWidth()/2,getHeight()/2, 0, 90);
g.drawArc(-2, -2,getWidth()/2,getHeight()/2, 0, 90);
This is the way by drawing the arc nearby you can able to draw make arc thicker.
All the best