getInstance3 static method

MPPointF getInstance3(
  1. MPPointF copy
)

Implementation

static MPPointF getInstance3(MPPointF copy) {
  MPPointF result = pool.get() as MPPointF;
  result._x = copy._x;
  result._y = copy._y;
  return result;
}