drawAffine method
DrawAffine() adjusts the current affine transformation matrix with the specified affine transformation matrix. Note that the current affine transform is adjusted rather than replaced.
Implementation
void drawAffine(AffineMatrix affineMatrix) => using(
(Arena arena) => _magickWandBindings.DrawAffine(
_wandPtr,
affineMatrix._toAffineMatrixStructPointer(allocator: arena),
),
);