Ejemplo n.º 1
0
    void cursorSlider_PrimaryPointCreate(object sender, HandFocusEventArgs e)
    {
        Point3D focusPoint = SessionManager.FocusPoint;

        cursorSlider.Center = focusPoint;
        handPointActive     = true;
    }
    void mainSlider_PrimaryPointCreate(object sender, HandFocusEventArgs e)
    {
        Point3D focusPoint = SessionManager.FocusPoint;

        mainSlider.Center = focusPoint;
        SendMessage("ListNav_Activate", SendMessageOptions.DontRequireReceiver);
    }
Ejemplo n.º 3
0
 void MyBox_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     Console.WriteLine("PrimaryPointCreate");
     flowRouter.ActiveListener = steadyDetector;
 }
Ejemplo n.º 4
0
    void clickSlider_PrimaryPointCreate(object sender, HandFocusEventArgs e)
    {
        Point3D focusPoint = SessionManager.FocusPoint;

        clickSlider.Center = focusPoint;
    }
 /// callback when we start the session (logging only)
 /// @param sender the object that sent the event
 /// @param e the event arguments
 void myControl_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     m_handsManager.Log("found primary point for " + this + " id=" + e.Hand.ID, NIEventLogger.Categories.Callbacks, NIEventLogger.Sources.Hands);
 }
 void myControl_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     handPointActive = true;
 }
Ejemplo n.º 7
0
 void mainSlider_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     Point3D focusPoint = SessionManager.FocusPoint;
     mainSlider.Center = focusPoint;
 }
Ejemplo n.º 8
0
 void cursorSlider_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     Point3D focusPoint = SessionManager.FocusPoint;
     cursorSlider.Center = focusPoint;
     handPointActive = true;
 }
 void myControl_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     handPointActive = true;
 }
Ejemplo n.º 10
0
 void MyCanvas_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     Console.WriteLine("Point created");
     Console.WriteLine(e.Hand.Position.X);
     flowRouter.ActiveListener = steadyDetector;
 }
Ejemplo n.º 11
0
 void MyBox_PrimaryPointCreate(object sender, HandFocusEventArgs e)
 {
     Console.WriteLine("PrimaryPointCreate");
     flowRouter.ActiveListener = steadyDetector;
 }