Home
last modified time | relevance | path

Searched refs:lineTo (Results 1 – 7 of 7) sorted by relevance

/lvgl-latest/src/libs/thorvg/
DtvgShape.cpp113 Result Shape::lineTo(float x, float y) noexcept in lineTo() function in Shape
115 pImpl->lineTo(x, y); in lineTo()
182 pImpl->lineTo(start.x + cx, start.y + cy); in appendArc()
237 pImpl->lineTo(x + w, y); in appendRect()
238 pImpl->lineTo(x + w, y + h); in appendRect()
239 pImpl->lineTo(x, y + h); in appendRect()
247 pImpl->lineTo(x + w - rx, y); in appendRect()
249 pImpl->lineTo(x + w, y + h - ry); in appendRect()
251 pImpl->lineTo(x + rx, y + h); in appendRect()
253 pImpl->lineTo(x, y + ry); in appendRect()
DtvgSvgSceneBuilder.cpp427 shape->lineTo(pts[0], pts[1]); in _recognizeShape()
437 shape->lineTo(pts[0], pts[1]); in _recognizeShape()
451 shape->lineTo(node->node.line.x2, node->node.line.y2); in _recognizeShape()
DtvgShape.h189 void lineTo(float x, float y) in lineTo() function
Dthorvg.h892 Result lineTo(float x, float y) noexcept;
DtvgCapi.cpp297 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->lineTo(x, y); in tvg_shape_line_to()
DtvgLottieBuilder.cpp685 shape->lineTo(in.x, in.y); in _updateStar()
772 shape->lineTo(in.x, in.y); in _updatePolygon()
/lvgl-latest/src/others/vg_lite_tvg/
Dvg_lite_tvg.cpp2402 TVG_CHECK_RETURN_RESULT(shape->lineTo(x, y)); in shape_append_path()