MPLAB® Harmony Graphics Suite > Graphics Library > Aria Graphics Library > Aria User Interface Library Interface > b) Data Types and Constants > laArcWidget Structure
MPLAB® Harmony Graphics Suite
laArcWidget Structure

Structure: laArcWidget_t 

A arc widget draws a arc of the specified origin and radius inside the widget bounds. All coordinates are expressed in local widget space. 

The color of the arc is determined by the widget scheme's 'foreground' color.

C
typedef struct laArcWidget_t {
  laWidget widget;
  uint32_t radius;
  uint32_t startAngle;
  int32_t centerAngle;
  uint32_t endAngle;
  uint32_t thickness;
  laBool roundEdge;
} laArcWidget;
Members
Members 
Description 
laWidget widget; 
base widget header 
uint32_t radius; 
the radius of the arc 
uint32_t startAngle; 
the start angle of the arc 
int32_t centerAngle; 
the center angle of the arc 
uint32_t endAngle; 
the end angle of the arc 
uint32_t thickness; 
the thickness of the arc 
laBool roundEdge; 
draws round edge if true. 
Remarks

None.

MPLAB® Harmony Graphics Suite