Searched refs:cubicTo (Results 1 – 6 of 6) sorted by relevance
| /lvgl-latest/src/libs/thorvg/ |
| D | tvgShape.cpp | 123 Result Shape::cubicTo(float cx1, float cy1, float cx2, float cy2, float x, float y) noexcept in cubicTo() function in Shape 125 pImpl->cubicTo(cx1, cy1, cx2, cy2, x, y); in cubicTo() 150 pImpl->cubicTo(cx + rx, cy + ryKappa, cx + rxKappa, cy + ry, cx, cy + ry); in appendCircle() 151 pImpl->cubicTo(cx - rxKappa, cy + ry, cx - rx, cy + ryKappa, cx - rx, cy); in appendCircle() 152 pImpl->cubicTo(cx - rx, cy - ryKappa, cx - rxKappa, cy - ry, cx, cy - ry); in appendCircle() 153 pImpl->cubicTo(cx + rxKappa, cy - ry, cx + rx, cy - ryKappa, cx + rx, cy); in appendCircle() 211 pImpl->cubicTo(ctrl1.x, ctrl1.y, ctrl2.x, ctrl2.y, end.x, end.y); in appendArc() 248 pImpl->cubicTo(x + w - rx + hrx, y, x + w, y + ry - hry, x + w, y + ry); in appendRect() 250 pImpl->cubicTo(x + w, y + h - ry + hry, x + w - rx + hrx, y + h, x + w - rx, y + h); in appendRect() 252 pImpl->cubicTo(x + rx - hrx, y + h, x, y + h - ry + hry, x, y + h - ry); in appendRect() [all …]
|
| D | tvgShape.h | 195 void cubicTo(float cx1, float cy1, float cx2, float cy2, float x, float y) in cubicTo() function
|
| D | thorvg.h | 909 Result cubicTo(float cx1, float cy1, float cx2, float cy2, float x, float y) noexcept;
|
| D | tvgCapi.cpp | 304 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->cubicTo(cx1, cy1, cx2, cy2, x, y); in tvg_shape_cubic_to()
|
| D | tvgLottieBuilder.cpp | 681 shape->cubicTo(in2.x, in2.y, in3.x, in3.y, in4.x, in4.y); in _updateStar() 768 shape->cubicTo(in2.x, in2.y, in3.x, in3.y, in4.x, in4.y); in _updatePolygon()
|
| /lvgl-latest/src/others/vg_lite_tvg/ |
| D | vg_lite_tvg.cpp | 2420 TVG_CHECK_RETURN_RESULT(shape->cubicTo(qcx0, qcy0, qcx1, qcy1, x, y)); in shape_append_path() 2431 TVG_CHECK_RETURN_RESULT(shape->cubicTo(cx1, cy1, cx2, cy2, x, y)); in shape_append_path()
|