drawArc method
void
drawArc({})
DrawArc() draws an arc falling within a specified bounding rectangle on the image.
sx
: starting x ordinate of bounding rectanglesy
: starting y ordinate of bounding rectangleex
: ending x ordinate of bounding rectangleey
: ending y ordinate of bounding rectanglesd
: starting degrees of rotationed
: ending degrees of rotation
Implementation
void drawArc({
required double sx,
required double sy,
required double ex,
required double ey,
required double sd,
required double ed,
}) =>
_magickWandBindings.DrawArc(
_wandPtr,
sx,
sy,
ex,
ey,
sd,
ed,
);