Lines Matching defs:offset

571         Otherwise, start contour at last point offset by (dx, dy).
574 @param dx offset from last point to contour start on x-axis
575 @param dy offset from last point to contour start on y-axis
617 @param dx offset from last point to line end on x-axis
618 @param dy offset from last point to line end on y-axis
672 @param dx1 offset from last point to quad control on x-axis
673 @param dy1 offset from last point to quad control on y-axis
674 @param dx2 offset from last point to quad end on x-axis
675 @param dy2 offset from last point to quad end on y-axis
752 @param dx1 offset from last point to conic control on x-axis
753 @param dy1 offset from last point to conic control on y-axis
754 @param dx2 offset from last point to conic end on x-axis
755 @param dy2 offset from last point to conic end on y-axis
810 @param dx1 offset from last point to first cubic control on x-axis
811 @param dy1 offset from last point to first cubic control on y-axis
812 @param dx2 offset from last point to second cubic control on x-axis
813 @param dy2 offset from last point to second cubic control on y-axis
814 @param dx3 offset from last point to cubic end on x-axis
815 @param dy3 offset from last point to cubic end on y-axis
976 @param dx x-axis offset end of arc from last SkPath SkPoint
977 @param dy y-axis offset end of arc from last SkPath SkPoint
1251 /** Appends src to SkPath, offset by (dx, dy).
1258 @param dx offset added to src SkPoint array x-axis coordinates
1259 @param dy offset added to src SkPoint array y-axis coordinates
1308 If dst is nullptr, SkPath is replaced by offset data.
1310 @param dx offset added to SkPoint array x-axis coordinates
1311 @param dy offset added to SkPoint array y-axis coordinates
1316 void offset(SkScalar dx, SkScalar dy, SkPath* dst) const;
1318 /** Offsets SkPoint array by (dx, dy). SkPath is replaced by offset data.
1320 @param dx offset added to SkPoint array x-axis coordinates
1321 @param dy offset added to SkPoint array y-axis coordinates
1323 void offset(SkScalar dx, SkScalar dy) {
1324 this->offset(dx, dy, this);