Searched refs:circle (Results 1 – 13 of 13) sorted by relevance
/lvgl-latest/demos/music/ |
D | README.md | 18 - Display the 4 bands on the left side of a circle by default at 0°, 45°, 90°, 135° 22 - Mirror the bars to the right side of the circle
|
/lvgl-latest/src/libs/svg/ |
D | lv_svg_render.c | 408 lv_svg_render_circle_t * circle = (lv_svg_render_circle_t *)obj; in _set_circle_attr() local 411 circle->cx = attr->value.fval; in _set_circle_attr() 414 circle->cy = attr->value.fval; in _set_circle_attr() 417 circle->r = attr->value.fval; in _set_circle_attr() 1306 lv_svg_render_circle_t * circle = (lv_svg_render_circle_t *)obj; in _render_circle() local 1308 lv_fpoint_t cp = {circle->cx, circle->cy}; in _render_circle() 1309 lv_vector_path_append_circle(path, &cp, circle->r, circle->r); in _render_circle() 1688 lv_svg_render_circle_t * circle = (lv_svg_render_circle_t *)obj; in _get_circle_bounds() local 1689 area->x1 = (int32_t)(circle->cx - circle->r); in _get_circle_bounds() 1690 area->y1 = (int32_t)(circle->cy - circle->r); in _get_circle_bounds() [all …]
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_mask_private.h | 108 lv_draw_sw_mask_radius_circle_dsc_t * circle; member
|
D | lv_draw_sw_mask.c | 116 if(radius_p->circle) { in lv_draw_sw_mask_free_param() 117 if(radius_p->circle->life < 0) { in lv_draw_sw_mask_free_param() 118 lv_free(radius_p->circle->cir_opa); in lv_draw_sw_mask_free_param() 119 lv_free(radius_p->circle); in lv_draw_sw_mask_free_param() 122 radius_p->circle->used_cnt--; in lv_draw_sw_mask_free_param() 310 param->circle = NULL; in lv_draw_sw_mask_radius_init() 323 param->circle = &(_circle_cache[i]); in lv_draw_sw_mask_radius_init() 350 param->circle = entry; in lv_draw_sw_mask_radius_init() 352 circ_calc_aa4(param->circle, radius); in lv_draw_sw_mask_radius_init() 907 lv_opa_t * aa_opa = get_next_line(p->circle, cir_y, &aa_len, &x_start); in lv_draw_mask_radius()
|
/lvgl-latest/docs/_static/css/ |
D | fontawesome.min.css | 5 …circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-…
|
/lvgl-latest/docs/details/widgets/ |
D | led.rst | 10 LEDs are rectangle-like (or circle) Widgets whose brightness can be
|
D | switch.rst | 29 - :cpp:enumerator:`LV_PART_KNOB` A rectangle (or circle) drawn at the left or right
|
D | slider.rst | 28 - :cpp:enumerator:`LV_PART_KNOB` A rectangle (or circle) drawn at the current value;
|
/lvgl-latest/src/themes/default/ |
D | lv_theme_default.c | 75 lv_style_t circle; member 385 style_init_reset(&theme->styles.circle); in style_init() 386 lv_style_set_radius(&theme->styles.circle, LV_RADIUS_CIRCLE); in style_init() 868 lv_obj_add_style(obj, &theme->styles.circle, 0); in theme_apply() 872 lv_obj_add_style(obj, &theme->styles.circle, LV_PART_INDICATOR); in theme_apply() 879 lv_obj_add_style(obj, &theme->styles.circle, 0); in theme_apply() 883 lv_obj_add_style(obj, &theme->styles.circle, LV_PART_INDICATOR); in theme_apply() 931 lv_obj_add_style(obj, &theme->styles.circle, 0); in theme_apply() 936 lv_obj_add_style(obj, &theme->styles.circle, LV_PART_INDICATOR); in theme_apply()
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgSceneBuilder.cpp | 442 …shape->appendCircle(node->node.circle.cx, node->node.circle.cy, node->node.circle.r, node->node.ci… in _recognizeShape()
|
D | tvgSvgLoaderCommon.h | 521 SvgCircleNode circle; member
|
D | tvgSvgLoader.cpp | 1632 SvgCircleNode* circle = &(node->node.circle); in _attrParseCircleNode() local 1636 array = (unsigned char*)circle; in _attrParseCircleNode() 3131 to->node.circle.cx = from->node.circle.cx; in _copyAttr() 3132 to->node.circle.cy = from->node.circle.cy; in _copyAttr() 3133 to->node.circle.r = from->node.circle.r; in _copyAttr() 3512 …if (node->node.circle.r == 0) TVGLOG("SVG", "Inefficient elements used [Size is zero][Node Type : … in _inefficientNodeCheck()
|
/lvgl-latest/ |
D | Kconfig | 326 int "Set number of maximally cached circle data" 330 The circumference of 1/4 circle are saved for anti-aliasing 331 radius * 4 bytes are used per circle (the most often used
|