expandPoint function

GeoRect expandPoint(
  1. GeoRect rect,
  2. GeoPoint point
)

Implementation

GeoRect expandPoint(
  GeoRect rect,
  GeoPoint point
){
  var _a0 = rect._copyFromDartTo_CGeoRect();
  var _a1 = point._copyFromDartTo_CGeoPoint();
  _CGeoRect res = _CFunction_G_expandPoint_With_CGeoRect_CGeoPoint(_a0, _a1);
  return res._toDart();
}