getInstance1 static method

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

Implementation

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