getInstance1 static method

MPPointF getInstance1(
  1. double x,
  2. double y
)

Implementation

static MPPointF getInstance1(double x, double y) {
  MPPointF result = pool.get() as MPPointF;
  result._x = x;
  result._y = y;
  return result;
}