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

/frameworks/base/graphics/java/android/graphics/
H A DPath.java390 public void quadTo(float x1, float y1, float x2, float y2) { method in class:Path
396 * Same as quadTo, but the coordinates are considered relative to the last
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java271 pathDelegate.quadTo(x1, y1, x2, y2);
712 public void quadTo(float x1, float y1, float x2, float y2) { method in class:Path_Delegate
713 mPath.quadTo(x1, y1, mLastX = x2, mLastY = y2);
717 * Same as quadTo, but the coordinates are considered relative to the last
738 mPath.quadTo(dx1, dy1, mLastX = dx2, mLastY = dy2);

Completed in 384 milliseconds