oled 1.0
OLED Graphics Control Library
Loading...
Searching...
No Matches
elements.h
Go to the documentation of this file.
1
18
19#ifndef DRAWING_ELEMETNS_H_
20#define DRAWING_ELEMETNS_H_
21
29 {
30 unsigned char x;
31 unsigned char y;
32 };
33
38
46 {
47 unsigned char width;
48 unsigned char height;
49 };
50
55
56#endif /* DRAWING_ELEMETNS_H_ */
struct DRAWING_Size_t DRAWING_Size
Alias for enum DRAWING_Size_t representing a drawing area/size.
Definition elements.h:54
struct DRAWING_Position_t DRAWING_Position
Alias for enum DRAWING_Position_t representing a drawing point.
Definition elements.h:37
Represents a 2D drawing position.
Definition elements.h:29
unsigned char x
Definition elements.h:30
unsigned char y
Definition elements.h:31
Represents the size dimensions for drawing.
Definition elements.h:46
unsigned char height
Definition elements.h:48
unsigned char width
Definition elements.h:47