HandleMove() 공개 메소드

public HandleMove ( Point currentPoint, Point currentRealWorldPoint ) : void
currentPoint Point
currentRealWorldPoint Point
리턴 void
예제 #1
0
        private void pointDenoiser_PrimaryPointUpdate(object sender, HandPointContextEventArgs e)
        {
            if (e.HPC.nUserID == pointDenoiser.PrimaryID)
            {
                lastRealHandPoint = e.HPC.Position;

                handHandler.HandleMove(null, new Point?(new Point((int)e.HPC.Position.X, (int)e.HPC.Position.Y)));
            }
        }