addOval method
Adds a new subpath that consists of a curve that forms the ellipse that fills the given rectangle.
Implementation
void addOval(Rect oval) {
assert(_rectIsValid(oval));
_addOval(oval.left, oval.top, oval.right, oval.bottom);
}
Adds a new subpath that consists of a curve that forms the ellipse that fills the given rectangle.
void addOval(Rect oval) {
assert(_rectIsValid(oval));
_addOval(oval.left, oval.top, oval.right, oval.bottom);
}