Home
last modified time | relevance | path

Searched refs:CCW_DIRECTION (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_engine/unittest/rosen_text/hm_symbol/
H A Dhm_symbol_node_build_test.cpp147 path.AddCircle(100, 100, 30, Drawing::PathDirection::CCW_DIRECTION); // 100 x, 100, 30 radius
182 path.AddCircle(100, 100, 30, Drawing::PathDirection::CCW_DIRECTION); // 100 x, 100, 30 radius
232 path.AddCircle(100, 100, 30, Drawing::PathDirection::CCW_DIRECTION); // 100 x, 100, 30 radius
257 path.AddCircle(100, 100, 30, Drawing::PathDirection::CCW_DIRECTION); // 100 x, 100, 30 radius
320 path.AddCircle(100, 100, 30, Drawing::PathDirection::CCW_DIRECTION); // 100 x, 100, 30 radius
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/tip/
H A Drosen_render_tip.cpp173 0.0f, RSPathDirection::CCW_DIRECTION, globalArrowPosition.GetX() + childHalfWidth, in PaintTopTip()
178 RSPathDirection::CCW_DIRECTION, in PaintTopTip()
184 RSPathDirection::CCW_DIRECTION, globalArrowPosition.GetX() - childHalfWidth, in PaintTopTip()
189 0.0f, RSPathDirection::CCW_DIRECTION, in PaintTopTip()
296 RSPathDirection::CCW_DIRECTION, in PaintLeftTip()
303 RSPathDirection::CCW_DIRECTION, globalArrowPosition.GetX() - bubbleSpacing - childWidth, in PaintLeftTip()
308 0.0f, RSPathDirection::CCW_DIRECTION, in PaintLeftTip()
314 0.0f, RSPathDirection::CCW_DIRECTION, globalArrowPosition.GetX() - bubbleSpacing, in PaintLeftTip()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/draw/
H A Dpath_test.cpp214 path.ArcTo(1.0f, 3.0f, 2.5f, PathDirection::CCW_DIRECTION, 1.0f, 3.0f);
399 path->AddRect(rect, PathDirection::CCW_DIRECTION);
413 path->AddRect(1.0f, 4.0f, 3.0f, 2.0f, PathDirection::CCW_DIRECTION);
442 path->AddOval(oval, PathDirection::CCW_DIRECTION);
553 path->AddCircle(1.0f, 0.5f, 0.5f, PathDirection::CCW_DIRECTION);
568 path->AddRoundRect(rect, 0.5f, 0.5f, PathDirection::CCW_DIRECTION);
597 path->AddRoundRect(roundRect, PathDirection::CCW_DIRECTION);
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/rosen/
H A Dtesting_path.h29 CCW_DIRECTION, enumerator
49 CCW_DIRECTION, enumerator
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/draw/
H A Dpath.h43 CCW_DIRECTION, enumerator
318 …l void AddOval(const Rect& oval, unsigned start, PathDirection dir = PathDirection::CCW_DIRECTION);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/bubble/
H A Drosen_render_bubble.cpp329 0.0f, RSPathDirection::CCW_DIRECTION, arrowPosition_.GetX() + childHalfWidth, in PaintTopBubbleInJs()
334 RSPathDirection::CCW_DIRECTION, in PaintTopBubbleInJs()
340 RSPathDirection::CCW_DIRECTION, arrowPosition_.GetX() - childHalfWidth, in PaintTopBubbleInJs()
345 0.0f, RSPathDirection::CCW_DIRECTION, in PaintTopBubbleInJs()
571 0.0f, RSPathDirection::CCW_DIRECTION, childOffsetX + childWidth, in PaintTopBubble()
575 …RSPathDirection::CCW_DIRECTION, childOffsetX + childWidth - NormalizeToPx(border_.TopRightRadius()… in PaintTopBubble()
579 …RSPathDirection::CCW_DIRECTION, childOffsetX, childOffsetY + NormalizeToPx(border_.TopLeftRadius()… in PaintTopBubble()
582 …0.0f, RSPathDirection::CCW_DIRECTION, childOffsetX + NormalizeToPx(border_.BottomLeftRadius().GetX… in PaintTopBubble()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/fuzztest/draw/path_fuzzer/
H A Dpath_fuzzer.cpp49 path.AddRect(rect, PathDirection::CCW_DIRECTION); in PathAddFuzzTest()
50 path.AddOval(oval, PathDirection::CCW_DIRECTION); in PathAddFuzzTest()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/2d_graphics/unittest/utils/
H A Dregion_test.cpp105 path.AddRect(1.0f, 4.0f, 3.0f, 2.0f, PathDirection::CCW_DIRECTION);
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/path_napi/
H A Djs_path.cpp861 GET_ENUM_PARAM(ARGC_TWO, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddOval()
889 GET_ENUM_PARAM(ARGC_THREE, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddCircle()
945 GET_ENUM_PARAM(ARGC_ONE, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddRect()
969 GET_ENUM_PARAM(ARGC_ONE, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddRoundRect()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_drag/
H A Dtext_drag_pattern.cpp279 … (directionX * directionY > 0) ? RSPathDirection::CW_DIRECTION : RSPathDirection::CCW_DIRECTION; in CalculateLineAndArc()
293 … (directionX * directionY < 0) ? RSPathDirection::CW_DIRECTION : RSPathDirection::CCW_DIRECTION; in CalculateLineAndArc()
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/enum_napi/
H A Djs_enum.cpp165 { "COUNTER_CLOCKWISE", static_cast<int32_t>(PathDirection::CCW_DIRECTION) },