--- a/middleware/src/Tracking/Events/RightHandQuitEventArgs.cs Mon Mar 26 16:23:14 2012 +0200
+++ b/middleware/src/Tracking/Events/RightHandQuitEventArgs.cs Thu Mar 29 14:39:21 2012 +0200
@@ -30,18 +30,14 @@
{
public class RightHandQuitEventArgs : EventArgs
{
- public readonly Joint handJoint;
- public readonly float position;
public readonly Debug.DebugWindow debug;
public readonly Server server;
/*
- * Constructeur : Il prend le noeud de la main, sa position, l'affichage de debug et le serveur TUIO.
+ * Constructeur : Il prend l'affichage de debug et le serveur TUIO.
*/
- public RightHandQuitEventArgs(Joint joint, float pos, Debug.DebugWindow _debug, Server _server)
+ public RightHandQuitEventArgs(Debug.DebugWindow _debug, Server _server)
{
- handJoint = joint;
- position = pos;
debug = _debug;
server = _server;
}