DataStructures 1.6.16
A small compiled C library of data structures used in the NHP wrist center-out and other tasks.
Loading...
Searching...
No Matches
RenderedCircleData Struct Reference

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
 

Detailed Description

Structure to store <x,y> coordinate and radius/whether to show circle.

Field Documentation

◆ radius

uint8_t RenderedCircleData::radius

7-bit Circle radius (pixels).

◆ render

uint8_t RenderedCircleData::render

1-bit flag to show (1) or hide (0) the circle.

◆ x

uint16_t RenderedCircleData::x

12-bit Circle center horizontal pixel coordinate.

◆ y

uint16_t RenderedCircleData::y

12-bit Circle center vertical pixel coordinate.