2018-06-07 15:32:19 +02:00
|
|
|
/**
|
|
|
|
* @file lv_draw_arc.c
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
|
|
|
#include "lv_draw_arc.h"
|
2019-09-06 12:24:15 +02:00
|
|
|
#include "lv_draw_mask.h"
|
2018-06-07 15:32:19 +02:00
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* STATIC PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* STATIC VARIABLES
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL FUNCTIONS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw an arc. (Can draw pie too with great thickness.)
|
|
|
|
* @param center_x the x coordinate of the center of the arc
|
|
|
|
* @param center_y the y coordinate of the center of the arc
|
|
|
|
* @param radius the radius of the arc
|
2018-06-08 10:26:10 +02:00
|
|
|
* @param mask the arc will be drawn only in this mask
|
2018-06-07 15:32:19 +02:00
|
|
|
* @param start_angle the start angle of the arc (0 deg on the bottom, 90 deg on the right)
|
|
|
|
* @param end_angle the end angle of the arc
|
2018-06-08 10:26:10 +02:00
|
|
|
* @param style style of the arc (`body.thickness`, `body.main_color`, `body.opa` is used)
|
2018-06-14 13:08:19 +02:00
|
|
|
* @param opa_scale scale down all opacities by the factor
|
2018-06-07 15:32:19 +02:00
|
|
|
*/
|
2019-08-28 09:46:56 +02:00
|
|
|
void lv_draw_arc(lv_coord_t center_x, lv_coord_t center_y, uint16_t radius, const lv_area_t * clip_area,
|
2019-06-06 06:05:40 +02:00
|
|
|
uint16_t start_angle, uint16_t end_angle, const lv_style_t * style, lv_opa_t opa_scale)
|
2018-06-07 15:32:19 +02:00
|
|
|
{
|
2018-06-08 10:26:10 +02:00
|
|
|
|
2019-08-28 09:46:56 +02:00
|
|
|
lv_style_t circle_style;
|
|
|
|
lv_style_copy(&circle_style, style);
|
|
|
|
circle_style.body.radius = LV_RADIUS_CIRCLE;
|
|
|
|
circle_style.body.opa = LV_OPA_TRANSP;
|
|
|
|
circle_style.body.border.width = style->line.width;
|
|
|
|
circle_style.body.border.color = style->line.color;
|
2018-06-07 15:32:19 +02:00
|
|
|
|
2018-06-09 08:45:38 +02:00
|
|
|
|
2019-08-28 09:46:56 +02:00
|
|
|
lv_mask_param_t mask_angle_param;
|
2019-09-06 12:24:15 +02:00
|
|
|
lv_draw_mask_angle_init(&mask_angle_param, center_x, center_y, start_angle, end_angle);
|
2019-04-04 07:15:40 +02:00
|
|
|
|
2019-09-06 12:24:15 +02:00
|
|
|
int16_t mask_angle_id = lv_draw_mask_add(lv_draw_mask_angle, &mask_angle_param, NULL);
|
2018-06-07 15:32:19 +02:00
|
|
|
|
|
|
|
|
2019-08-28 09:46:56 +02:00
|
|
|
printf("s:%d, e:%d\n", start_angle, end_angle);
|
2018-06-07 15:32:19 +02:00
|
|
|
|
|
|
|
|
2019-08-28 09:46:56 +02:00
|
|
|
lv_area_t area;
|
|
|
|
area.x1 = center_x - radius;
|
|
|
|
area.y1 = center_y - radius;
|
|
|
|
area.x2 = center_x + radius;
|
|
|
|
area.y2 = center_y + radius;
|
2018-06-07 15:32:19 +02:00
|
|
|
|
2019-08-28 09:46:56 +02:00
|
|
|
lv_draw_rect(&area, clip_area, &circle_style, LV_OPA_COVER);
|
2018-06-07 15:32:19 +02:00
|
|
|
|
2019-09-06 12:24:15 +02:00
|
|
|
lv_draw_mask_remove_id(mask_angle_id);
|
2018-06-12 09:22:45 +02:00
|
|
|
|
2018-06-07 15:32:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* STATIC FUNCTIONS
|
|
|
|
**********************/
|
|
|
|
|