gusimplewhiteboard
wb_robot.h
Go to the documentation of this file.
1#ifndef WBROBOT_
2#define WBROBOT_
3
4#include <sys/types.h>
5#include <gu_util.h>
6
14{
15
17 PROPERTY(int16_t, topLeft_X)
19 PROPERTY(int16_t, topLeft_Y)
20
21
22 PROPERTY(int16_t, bottomRight_X)
24 PROPERTY(int16_t, bottomRight_Y)
25
27 PROPERTY(bool, visible)
29 PROPERTY(bool, pad)
30#ifdef __cplusplus
32 wb_robot() : _topLeft_X(0), _topLeft_Y(0), _bottomRight_X(0), _bottomRight_Y(0), _visible(false), _pad(false) {}
33#endif
34};
35
36#endif
Whiteboard structure for robot coordinates X and Y coordinates are posted as seen in the image X rang...
Definition: wb_robot.h:14
topLeft_Y bottomRight_Y pad wb_robot()
< align to 16 bits
Definition: wb_robot.h:32
PROPERTY(int16_t, topLeft_X) PROPERTY(int16_t
The x,y coordinates of the top left corner of the post.