Home
last modified time | relevance | path

Searched refs:GetPositionAndTangent (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/skia_adapter/
H A Dskia_path_test.cpp183 ret = skiaPathTmp.GetPositionAndTangent(10, position, tangent, true); // 10: distance
188 ret = skiaPath.GetPositionAndTangent(0, position, tangent, true);
190 ret = skiaPath.GetPositionAndTangent(std::nanf(""), position, tangent, true);
192 ret = skiaPath.GetPositionAndTangent(10, position, tangent, true); // 10: distance
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
H A Drs_path.cpp87 bool ret = drPath_->GetPositionAndTangent(distance, position, tangent, false); in GetPosTan()
/ohos5.0/foundation/multimodalinput/input/service/window_manager/src/
H A Dknuckle_glow_trace_system.cpp98 if (path.GetPositionAndTangent(distanceFromEnd, pathPoints, tangent, true)) { in AddGlowPoints()
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/rosen/
H A Dtesting_path.h114 virtual bool GetPositionAndTangent( in GetPositionAndTangent() function
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H A Dpath_test.cpp991 EXPECT_FALSE(path->GetPositionAndTangent(0, point1, point2, false));
1007 EXPECT_TRUE(path->GetPositionAndTangent(10, point1, point2, true));
1023 EXPECT_TRUE(path->GetPositionAndTangent(0.1f, point1, point2, false));
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/draw/
H A Dpath.cpp273 bool Path::GetPositionAndTangent(scalar distance, Point& position, Point& tangent, bool forceClosed… in GetPositionAndTangent() function in OHOS::Rosen::Drawing::Path
275 return impl_->GetPositionAndTangent(distance, position, tangent, forceClosed); in GetPositionAndTangent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/painter/
H A Drosen_svg_painter.cpp461 if (!drawPath.GetPositionAndTangent(current, position, tangent, false)) { in GetPathOffset()
491 …bool ret = motion.GetPositionAndTangent(motion.GetLength(false) * percent, position, tangent, fals… in GetMotionPathPosition()
724 if (!path.GetPositionAndTangent(offset + width / 2.0, position, tangent, false)) { in UpdateTextPath()
728 if (!path.GetPositionAndTangent(offset, position, tempTangent, false)) { in UpdateTextPath()
985 …bool ret = motion.GetPositionAndTangent(motion.GetLength(false) * percent, position, tangent, fals… in UpdateMotionMatrix()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dpath_impl.h101 …virtual bool GetPositionAndTangent(scalar distance, Point& position, Point& tangent, bool forceClo…
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/path_napi/
H A Djs_path.h63 static napi_value GetPositionAndTangent(napi_env env, napi_callback_info info);
H A Djs_path.cpp59 DECLARE_NAPI_FUNCTION("getPositionAndTangent", JsPath::GetPositionAndTangent),
329 napi_value JsPath::GetPositionAndTangent(napi_env env, napi_callback_info info) in GetPositionAndTangent() function in OHOS::Rosen::Drawing::JsPath
768 bool result = m_path->GetPositionAndTangent(distance, position, tangent, forceClosed); in OnGetPositionAndTangent()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/skia_adapter/
H A Dskia_path.h107 …bool GetPositionAndTangent(scalar distance, Point& position, Point& tangent, bool forceClosed) ove…
H A Dskia_path.cpp431 bool SkiaPath::GetPositionAndTangent(scalar distance, Point& position, Point& tangent, bool forceCl… in GetPositionAndTangent() function in OHOS::Rosen::Drawing::SkiaPath
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H A Dpath.h491 …bool GetPositionAndTangent(scalar distance, Point& position, Point& tangent, bool forceClosed) con…
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/path_fuzzer/
H A Dpath_fuzzer.cpp145 path.GetPositionAndTangent(distance, ptOne, ptTwo, forceClosed); in PathFuzzTest002()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_path.cpp557 return path->GetPositionAndTangent(distance, *position, *tangent, forceClosed); in OH_Drawing_PathGetPositionTangent()