From 909cbe05b2d822ebafa378d70b81acecc0fd27c3 Mon Sep 17 00:00:00 2001 From: doomertheboomer Date: Wed, 26 Jul 2023 21:17:39 +0700 Subject: [PATCH] work out kinks of touch --- depthrush/drs.cpp | 6 +++--- depthrush/drs.h | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/depthrush/drs.cpp b/depthrush/drs.cpp index 42b4995..7effa48 100644 --- a/depthrush/drs.cpp +++ b/depthrush/drs.cpp @@ -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; diff --git a/depthrush/drs.h b/depthrush/drs.h index 3f4144c..a0d9496 100644 --- a/depthrush/drs.h +++ b/depthrush/drs.h @@ -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 {