Home
last modified time | relevance | path

Searched refs:CubicTo (Results 1 - 23 of 23) sorted by relevance

/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_spherize_effect_filter.cpp125 path.CubicTo(ctrlPoints[1], ctrlPoints[2], ctrlPoints[3]); in DrawImageRect()
127 path.CubicTo(ctrlPoints[4], ctrlPoints[5], ctrlPoints[6]); in DrawImageRect()
129 path.CubicTo(ctrlPoints[7], ctrlPoints[8], ctrlPoints[9]); in DrawImageRect()
131 path.CubicTo(ctrlPoints[10], ctrlPoints[11], ctrlPoints[0]); in DrawImageRect()
H A Drs_fly_out_shader_filter.cpp175 path.CubicTo(flyUp[1], flyUp[2], flyUp[3]); in DrawImageRect()
177 path.CubicTo(flyUp[4], flyUp[5], flyUp[6]); in DrawImageRect()
179 path.CubicTo(flyDown[4], flyDown[5], flyDown[6]); in DrawImageRect()
181 path.CubicTo(flyDown[7], flyDown[8], flyDown[9]); in DrawImageRect()
183 path.CubicTo(flyDown[10], flyDown[11], flyDown[0]); in DrawImageRect()
185 path.CubicTo(flyUp[10], flyUp[11], flyUp[0]); in DrawImageRect()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/
H A Dpath.cpp78 void Path::CubicTo(scalar ctrlPt1X, scalar ctrlPt1Y, scalar ctrlPt2X, scalar ctrlPt2Y, scalar endPtX, scalar endPtY) in CubicTo() function in OHOS::Rosen::Drawing::Path
80 impl_->CubicTo(ctrlPt1X, ctrlPt1Y, ctrlPt2X, ctrlPt2Y, endPtX, endPtY); in CubicTo()
83 void Path::CubicTo(const Point& ctrlPt1, const Point& ctrlPt2, const Point& endPt) in CubicTo() function in OHOS::Rosen::Drawing::Path
85 impl_->CubicTo(ctrlPt1.GetX(), ctrlPt1.GetY(), ctrlPt2.GetX(), ctrlPt2.GetY(), endPt.GetX(), endPt.GetY()); in CubicTo()
/foundation/arkui/ace_engine/test/mock/core/rosen/
H A Dtesting_path.h84 virtual void CubicTo(float ctrlPt1X, float ctrlPt1Y, float ctrlPt2X, float ctrlPt2Y, float endPtX, float endPtY) {} in CubicTo() function in OHOS::Ace::Testing::TestingPath
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H A Dpath.h174 virtual void CubicTo(
184 virtual void CubicTo(const Point& ctrlPt1, const Point& ctrlPt2, const Point& endPt);
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H A Dpath_test.cpp260 path->CubicTo(1.0f, 2.3f, 2.5f, 2.0f, 3.5f, 3.0f); in HWTEST_F()
274 path->CubicTo(1.0f, 2.3f, 1.4f, 2.0f, 1.5f, 3.0f); in HWTEST_F()
291 path->CubicTo(point1, point2, endPoint); in HWTEST_F()
308 path->CubicTo(point1, point2, endPoint); in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/path_fuzzer/
H A Dpath_fuzzer.cpp131 path.CubicTo(ptOneX, ptOneY, ptTwoX, ptTwoY, endPtX, endPtY); in PathFuzzTest002()
133 path.CubicTo(ptOne, ptTwo, ptEnd); in PathFuzzTest002()
/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_path_test.cpp57 skiaPath.CubicTo(0, 0, 100, 100, 100, 200); // 100: angle, direction and endX, 200: endY in HWTEST_F()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dpath_impl.h56 virtual void CubicTo(
/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/path_napi/
H A Djs_path.h41 static napi_value CubicTo(napi_env env, napi_callback_info info);
H A Djs_path.cpp37 DECLARE_NAPI_FUNCTION("cubicTo", JsPath::CubicTo),
203 napi_value JsPath::CubicTo(napi_env env, napi_callback_info info) in CubicTo() function in OHOS::Rosen::Drawing::JsPath
495 JS_CALL_DRAWING_FUNC(m_path->CubicTo(Point(px1, py1), Point(px2, py2), Point(px3, py3))); in OnCubicTo()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_path.h55 void CubicTo(
H A Dskia_path.cpp93 void SkiaPath::CubicTo(scalar ctrlPt1X, scalar ctrlPt1Y, scalar ctrlPt2X, scalar ctrlPt2Y, scalar endPtX, scalar endPtY) in CubicTo() function in OHOS::Rosen::Drawing::SkiaPath
/foundation/graphic/graphic_2d/rosen/modules/render_service_client/test/
H A Dsurface_capture_test.cpp98 path.CubicTo(10, 10, 25, 80, 60, 80); in DrawSurfaceToCapture()
/foundation/multimodalinput/input/service/window_manager/src/
H A Dknuckle_dynamic_drawing_manager.cpp284 pointerPath_.CubicTo(traceControlPoints_[pointIndex1].GetX(), traceControlPoints_[pointIndex1].GetY(),
H A Dknuckle_drawing_manager.cpp770 path_.CubicTo(pointerInfos_[POINT_INDEX1].x, pointerInfos_[POINT_INDEX1].y, in DrawGraphic()
819 path_.CubicTo(pointerInfos_[POINT_INDEX1].x, pointerInfos_[POINT_INDEX1].y, in DrawGraphic()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/
H A Drs_properties_painter.cpp1665 path.CubicTo(ctrlPoints[1], ctrlPoints[2], ctrlPoints[3]); // upper edge in DrawCustomPath()
1666 path.CubicTo(ctrlPoints[4], ctrlPoints[5], ctrlPoints[6]); // right edge in DrawCustomPath()
1667 path.CubicTo(ctrlPoints[7], ctrlPoints[8], ctrlPoints[9]); // bottom edge in DrawCustomPath()
1668 path.CubicTo(ctrlPoints[10], ctrlPoints[11], ctrlPoints[0]); // left edge in DrawCustomPath()
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_path.cpp188 path->CubicTo(ctrlX1, ctrlY1, ctrlX2, ctrlY2, endX, endY); in OH_Drawing_PathCubicTo()
/foundation/graphic/graphic_2d/rosen/samples/2d_graphics/test/src/
H A Dpath_test.cpp188 path.CubicTo(rect.GetLeft(), rect.GetBottom(), rect.GetRight(), rect.GetTop(), rect.GetRight(), rect.GetBottom()); in TestCubicTo()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/canvas/
H A Dcustom_paint_paint_method.cpp960 rsPath_.CubicTo(static_cast<RSScalar>(param.cp1x), in BezierCurveTo()
1123 rsPath2d_.CubicTo(args.para1, args.para2, args.para3, args.para4, args.para5, args.para6); in Path2DBezierCurveTo()
/foundation/arkui/ace_engine/frameworks/core/components/custom_paint/
H A Drosen_render_offscreen_canvas.cpp1671 path2d_.CubicTo(cp1x, cp1y, cp2x, cp2y, x, y); in Path2DBezierCurveTo()
2422 path_.CubicTo(static_cast<RSScalar>(param.cp1x), static_cast<RSScalar>(param.cp1y), in UpdateTextStyleForeground()
H A Drosen_render_custom_paint.cpp1125 drawingPath_.CubicTo(static_cast<RSScalar>(param.cp1x + offset.GetX()), in BezierCurveTo()
1669 drawingPath2d_.CubicTo(cp1x, cp1y, cp2x, cp2y, x, y); in Path2DBezierCurveTo()
/foundation/arkui/ace_engine/frameworks/core/components/chart/
H A Drosen_render_chart.cpp801 path.CubicTo(controlA.GetX(), controlA.GetY(), controlB.GetX(), controlB.GetY(), next.GetX(), next.GetY()); in AddCubicPath()

Completed in 33 milliseconds