1
0
mirror of synced 2024-09-23 19:08:26 +02:00

work out kinks of touch

This commit is contained in:
doomertheboomer 2023-07-26 21:17:39 +07:00
parent b5099d1b83
commit 909cbe05b2
2 changed files with 7 additions and 7 deletions

View File

@ -230,9 +230,9 @@ void start_kinect() {
// update event details
foot.event.id = foot.id;
foot.event.x = 0;
foot.event.y = 0;
foot.event.width = 100;
foot.event.x = 1;
foot.event.y = 1;
foot.event.width = -1.79769E+308;
foot.event.height = foot.event.width;
foot.event.type = DRS_DOWN;

View File

@ -8,10 +8,10 @@ enum DRS_TOUCH_TYPE {
typedef struct drs_touch_t {
int type = DRS_UP;
int id = 0;
double x = 0.0;
double y = 0.0;
double width = 1;
double height = 1;
double x = 0.0; //x = pixelX/1920
double y = 0.0; //y = pixelY/1920
double width = 1; //width = pixelWidth/1920
double height = 1; //height = pixelHeight/1920
};
struct VRFoot {