ImageRotate method
Rotate image by input angle in degrees (-359 to 359)
Implementation
void ImageRotate(
ImageD image,
num degrees,
) => run(
() => _debugLabels.ImageRotate(image, degrees),
() => _flat.ImageRotate(
$.Image$.Ref1(image),
degrees.toInt(),
),
);