コード例 #1
0
 private void RaisePaperPostureSucceed(PostureEventArgs e)
 {
     if (PaperPostureSucceed != null)
     {
         PaperPostureSucceed(this, e);
     }
 }
コード例 #2
0
 private void RaiseTwoPostureSucceed(PostureEventArgs e)
 {
     if (TwoFingersPostureSucceed != null)
     {
         TwoFingersPostureSucceed(this, e);
     }
 }
コード例 #3
0
 private void RaiseZeroPostureDetectionLost(PostureEventArgs e)
 {
     if (ZeroFingerPostureDetectionLost != null)
         ZeroFingerPostureDetectionLost(this, e);
 }
コード例 #4
0
 private void RaiseOnePostureDetectionLost(PostureEventArgs e)
 {
     if (OneFingerPostureDetectionLost != null)
         OneFingerPostureDetectionLost(this, e);
 }
コード例 #5
0
 private void RaiseTwoPostureDetectionInProgress(PostureEventArgs e)
 {
     if (TwoFingersPostureDetectionInProgress != null)
     {
         TwoFingersPostureDetectionInProgress(this, e);
     }
 }
コード例 #6
0
 private void RaiseFourPostureDetectionInProgress(PostureEventArgs e)
 {
     if (FourFingersPostureDetectionInProgress != null)
     {
         FourFingersPostureDetectionInProgress(this, e);
     }
 }
コード例 #7
0
 private void RaiseFourPostureSucceed(PostureEventArgs e)
 {
     if (FourFingersPostureSucceed != null)
     {
         FourFingersPostureSucceed(this, e);
     }
 }
コード例 #8
0
 private void RaiseScissorsPostureSucceed(PostureEventArgs e)
 {
     if (ScissorsPostureSucceed != null)
     {
         ScissorsPostureSucceed(this, e);
     }
 }
コード例 #9
0
 private void OnFourFingersPostureDetectionLost(object sender, PostureEventArgs e)
 {
     RaiseFourPostureDetectionLost(e);
 }
コード例 #10
0
 private void RaiseScissorsPostureDetectionInProgress(PostureEventArgs e)
 {
     if (ScissorsPostureDetectionInProgress != null)
     {
         ScissorsPostureDetectionInProgress(this, e);
     }
 }
コード例 #11
0
 private void RaiseScissorsPostureDetectionLost(PostureEventArgs e)
 {
     if (ScissorsPostureDetectionLost != null)
         ScissorsPostureDetectionLost(this, e);
 }
コード例 #12
0
 private void RaiseRockPostureSucceed(PostureEventArgs e)
 {
     if (RockPostureSucceed != null)
     {
         RockPostureSucceed(this, e);
     }
 }
コード例 #13
0
 private void RaiseRockPostureDetectionLost(PostureEventArgs e)
 {
     if (RockPostureDetectionLost != null)
         RockPostureDetectionLost(this, e);
 }
コード例 #14
0
 private void RaiseRockPostureDetectionInProgress(PostureEventArgs e)
 {
     if (RockPostureDetectionInProgress != null)
     {
         RockPostureDetectionInProgress(this, e);
     }
 }
コード例 #15
0
 private void OnZeroFingerPostureDetectionLost(object sender, PostureEventArgs e)
 {
     RaiseZeroPostureDetectionLost(e);
 }
コード例 #16
0
 private void OnFourFingersPostureSucceed(object sender, PostureEventArgs e)
 {
     RaiseFourPostureSucceed(e);
 }
コード例 #17
0
 private void OnZeroFingerPostureSucceed(object sender, PostureEventArgs e)
 {
     RaiseZeroPostureSucceed(e);
 }
コード例 #18
0
 private void OnOneFingerPostureDetectionLost(object sender, PostureEventArgs e)
 {
     RaiseOnePostureDetectionLost(e);
 }
コード例 #19
0
 private void RaiseFourPostureDetectionLost(PostureEventArgs e)
 {
     if (FourFingersPostureDetectionLost != null)
         FourFingersPostureDetectionLost(this, e);
 }
コード例 #20
0
 private void OnOneFingerPostureSucceed(object sender, PostureEventArgs e)
 {
     RaiseOnePostureSucceed(e);
 }
コード例 #21
0
 private void RaiseOnePostureDetectionInProgress(PostureEventArgs e)
 {
     if (OneFingerPostureDetectionInProgress != null)
     {
         OneFingerPostureDetectionInProgress(this, e);
     }
 }
コード例 #22
0
 private void OnTwoFingersPostureDetectionInProgress(object sender, PostureEventArgs e)
 {
     RaiseTwoPostureDetectionInProgress(e);
 }
コード例 #23
0
 private void RaiseOnePostureSucceed(PostureEventArgs e)
 {
     if (OneFingerPostureSucceed != null)
     {
         OneFingerPostureSucceed(this, e);
     }
 }
コード例 #24
0
 private void OnTwoFingersPostureDetectionLost(object sender, PostureEventArgs e)
 {
     RaiseTwoPostureDetectionLost(e);
 }
コード例 #25
0
 private void RaiseTwoPostureDetectionLost(PostureEventArgs e)
 {
     if (TwoFingersPostureDetectionLost != null)
         TwoFingersPostureDetectionLost(this, e);
 }
コード例 #26
0
 private void OnTwoFingersPostureSucceed(object sender, PostureEventArgs e)
 {
     RaiseTwoPostureSucceed(e);
 }
コード例 #27
0
 private void RaiseZeroPostureDetectionInProgress(PostureEventArgs e)
 {
     if (ZeroFingerPostureDetectionInProgress != null)
     {
         ZeroFingerPostureDetectionInProgress(this, e);
     }
 }
コード例 #28
0
 private void OnZeroFingerPostureDetectionInProgress(object sender, PostureEventArgs e)
 {
     RaiseZeroPostureDetectionInProgress(e);
 }
コード例 #29
0
 private void RaiseZeroPostureSucceed(PostureEventArgs e)
 {
     if (ZeroFingerPostureSucceed != null)
     {
         ZeroFingerPostureSucceed(this, e);
     }
 }
コード例 #30
0
 private void RaisePaperPostureDetectionLost(PostureEventArgs e)
 {
     if (PaperPostureDetectionLost != null)
         PaperPostureDetectionLost(this, e);
 }