Home | History | Annotate | Download | only in graphics

Lines Matching refs:mPath

59     private GeneralPath mPath = new GeneralPath();
71 return mPath;
75 mPath.reset();
76 mPath.append(shape, false /*connect*/);
80 mPath.reset();
84 mPath.reset();
85 mPath.append(iterator, false /*connect*/);
119 pathDelegate.mPath.reset();
182 Area area = new Area(pathDelegate.mPath);
341 pathDelegate.mPath.append(new Ellipse2D.Float(
353 pathDelegate.mPath.append(new Ellipse2D.Float(
366 pathDelegate.mPath.append(new Arc2D.Float(
380 pathDelegate.mPath.append(new RoundRectangle2D.Float(
485 mPath.reset();
487 mPath.append(delegate.mPath, false /*connect*/);
492 mPath.setWindingRule(getWindingRule(fillType));
537 destPathDelegate.mPath.append(
538 srcPathDelegate.mPath.getPathIterator(transform), false);
540 destPathDelegate.mPath.append(srcPathDelegate.mPath, false);
550 return mPath.getCurrentPoint() == null;
558 Rectangle2D rect = mPath.getBounds2D();
572 mPath.moveTo(mLastX = x, mLastY = y);
588 mPath.moveTo(mLastX = dx, mLastY = dy);
600 mPath.lineTo(mLastX = x, mLastY = y);
615 mPath.moveTo(mLastX = 0, mLastY = 0);
619 mPath.lineTo(mLastX = dx, mLastY = dy);
633 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2);
652 mPath.moveTo(mLastX = 0, mLastY = 0);
658 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);
675 mPath.curveTo(x1, y1, x2, y2, mLastX = x3, mLastY = y3);
686 mPath.moveTo(mLastX = 0, mLastY = 0);
694 mPath.curveTo(dx1, dy1, dx2, dy2, mLastX = dx3, mLastY = dy3);
713 mPath.append(arc, true /*connect*/);
723 mPath.closePath();
727 Point2D last = mPath.getCurrentPoint();
776 PathIterator iterator = mPath.getPathIterator(new AffineTransform(0, 0, dx, 0, 0, dy));
781 dst.mPath = newPath;
783 mPath = newPath;
805 PathIterator iterator = mPath.getPathIterator(matrix.getAffineTransform());
810 dst.mPath = newPath;
812 mPath = newPath;