BlinkID C SDK version 5.16.0
Rectangle.h
Go to the documentation of this file.
1
13#ifndef RECTANGLE_H
14#define RECTANGLE_H
15
16#include "Export.h"
17
18#ifdef __cplusplus
19extern "C"
20{
21#endif
22
29 float x;
31 float y;
33 float width;
35 float height;
36};
37
41typedef MB_EXPORTED_TYPE struct MBRectangle MBRectangle;
42
43#ifdef __cplusplus
44}
45#endif
46
47#endif
This structure represents the rectangle.
Definition: Rectangle.h:27
float height
Definition: Rectangle.h:35
float width
Definition: Rectangle.h:33
float x
Definition: Rectangle.h:29
float y
Definition: Rectangle.h:31