boxPoints function

VARP boxPoints(
  1. RotatedRect box
)

Implementation

VARP boxPoints(RotatedRect box) {
  final pOut = c.mnn_cv_boxPoints(box.ref);
  final rval = VARP.fromPointer(pOut);
  return rval;
}