for (int[] p : iPoints) {
         Point2D w = v2w.transform(new Point2D.Double(p[0], p[1]), null);
         points.add(new double[] {w.getX(), w.getY()});
      }
上面语句什么意思?