factory Point.fromXY(double x, double y) { final ptr = calloc<c.mnn_cv_point_t>() ..ref.x = x ..ref.y = y; return Point.fromPointer(ptr); }