diff options
author | Wim Vriend <facetracknoir@gmail.com> | 2010-10-05 20:40:38 +0000 |
---|---|---|
committer | Wim Vriend <facetracknoir@gmail.com> | 2010-10-05 20:40:38 +0000 |
commit | 6999bf3ef1c30d5af447c8cdd98213d1b1106a30 (patch) | |
tree | 7b72d37f030125bc16e60cb6c7d92a0a7baa6dae /FaceTrackNoIR/FGServer.h | |
parent | 9a573dbf66f8baddf1aabe79960c8658cbb0ee9e (diff) |
Beta Curve configuration seems to work...
git-svn-id: svn+ssh://svn.code.sf.net/p/facetracknoir/code@22 19e81ba0-9b1a-49c3-bd6c-561e1906d5fb
Diffstat (limited to 'FaceTrackNoIR/FGServer.h')
-rw-r--r-- | FaceTrackNoIR/FGServer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FaceTrackNoIR/FGServer.h b/FaceTrackNoIR/FGServer.h index 0df2eb1d..bd849c80 100644 --- a/FaceTrackNoIR/FGServer.h +++ b/FaceTrackNoIR/FGServer.h @@ -86,9 +86,9 @@ public: void setVirtRotX(float rot) { virtRotX = rot; }
void setVirtRotY(float rot) { virtRotY = rot; }
void setVirtRotZ(float rot) { virtRotZ = rot; }
- void setVirtPosX(float pos) { virtPosX = pos; }
- void setVirtPosY(float pos) { virtPosY = pos; }
- void setVirtPosZ(float pos) { virtPosZ = pos; }
+ void setVirtPosX(float pos) { virtPosX = pos / 100.0f; }
+ void setVirtPosY(float pos) { virtPosY = pos / 100.0f; }
+ void setVirtPosZ(float pos) { virtPosZ = pos / 100.0f; }
};
|