rotate method
Implementation
Mat rotate(int rotationCode, {bool inplace = false}) {
if (inplace) {
cvRun(() => ccore.Rotate(ref, ref, rotationCode));
return this;
} else {
final dst = clone();
cvRun(() => ccore.Rotate(ref, dst.ref, rotationCode));
return dst;
}
}