DataStructures 1.6.16
A small compiled C library of data structures used in the NHP wrist center-out and other tasks.
|
Structure to store <x,y> coordinate and radius/whether to show circle. More...
#include <data_structures.h>
Data Fields | |
uint16_t | x: 12 |
uint16_t | y: 12 |
uint8_t | radius: 7 |
uint8_t | render: 1 |
Structure to store <x,y> coordinate and radius/whether to show circle.
uint8_t RenderedCircleData::radius |
7-bit Circle radius (pixels).
uint8_t RenderedCircleData::render |
1-bit flag to show (1) or hide (0) the circle.
uint16_t RenderedCircleData::x |
12-bit Circle center horizontal pixel coordinate.
uint16_t RenderedCircleData::y |
12-bit Circle center vertical pixel coordinate.