boundingRect property
Rect
get
boundingRect
Implementation
Rect get boundingRect {
final rect = calloc<cvg.CvRect>();
cvRun(() => ccore.cv_RotatedRect_boundingRect(ptr.ref, rect));
return Rect.fromPointer(rect);
}