Searched refs:jsDirection (Results 1 – 1 of 1) sorted by relevance
/ohos5.0/foundation/graphic/graphic_2d/interfaces/kits/napi/graphic/drawing/path_napi/ |
H A D | js_path.cpp | 860 int32_t jsDirection = 0; in OnAddOval() local 861 GET_ENUM_PARAM(ARGC_TWO, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddOval() 863 …JS_CALL_DRAWING_FUNC(m_path->AddOval(drawingRect, start, static_cast<PathDirection>(jsDirection))); in OnAddOval() 888 int32_t jsDirection = 0; in OnAddCircle() local 889 GET_ENUM_PARAM(ARGC_THREE, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddCircle() 891 …JS_CALL_DRAWING_FUNC(m_path->AddCircle(px1, py1, radius, static_cast<PathDirection>(jsDirection))); in OnAddCircle() 944 int32_t jsDirection = 0; in OnAddRect() local 945 GET_ENUM_PARAM(ARGC_ONE, jsDirection, 0, static_cast<int32_t>(PathDirection::CCW_DIRECTION)); in OnAddRect() 947 JS_CALL_DRAWING_FUNC(m_path->AddRect(drawingRect, static_cast<PathDirection>(jsDirection))); in OnAddRect() 968 int32_t jsDirection = 0; in OnAddRoundRect() local [all …]
|