Searched defs:quadTo (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DPath.java370 public void quadTo(float x1, float y1, float x2, float y2) { method in class:Path
376 * Same as quadTo, but the coordinates are considered relative to the last
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java264 pathDelegate.quadTo(x1, y1, x2, y2);
646 private void quadTo(float x1, float y1, float x2, float y2) { method in class:Path_Delegate
647 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2);
651 * Same as quadTo, but the coordinates are considered relative to the last
672 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);

Completed in 67 milliseconds