/KinectAPI/KinectAPI/KinectAPI.Gestures.Dollar/ProgressEvent.cs

# · C# · 85 lines · 22 code · 4 blank · 59 comment · 0 complexity · 76837967079fe4b10bde9d1ca8170776 MD5 · raw file

  1. /**
  2. * The $1 Unistroke Recognizer (C# version)
  3. *
  4. * Jacob O. Wobbrock, Ph.D.
  5. * The Information School
  6. * University of Washington
  7. * Mary Gates Hall, Box 352840
  8. * Seattle, WA 98195-2840
  9. * wobbrock@u.washington.edu
  10. *
  11. * Andrew D. Wilson, Ph.D.
  12. * Microsoft Research
  13. * One Microsoft Way
  14. * Redmond, WA 98052
  15. * awilson@microsoft.com
  16. *
  17. * Yang Li, Ph.D.
  18. * Department of Computer Science and Engineering
  19. * University of Washington
  20. * The Allen Center, Box 352350
  21. * Seattle, WA 98195-2840
  22. * yangli@cs.washington.edu
  23. *
  24. * The Protractor enhancement was published by Yang Li and programmed here by
  25. * Jacob O. Wobbrock.
  26. *
  27. * Li, Y. (2010). Protractor: A fast and accurate gesture
  28. * recognizer. Proceedings of the ACM Conference on Human
  29. * Factors in Computing Systems (CHI '10). Atlanta, Georgia
  30. * (April 10-15, 2010). New York: ACM Press, pp. 2169-2172.
  31. *
  32. * This software is distributed under the "New BSD License" agreement:
  33. *
  34. * Copyright (c) 2007-2011, Jacob O. Wobbrock, Andrew D. Wilson and Yang Li.
  35. * All rights reserved.
  36. *
  37. * Redistribution and use in source and binary forms, with or without
  38. * modification, are permitted provided that the following conditions are met:
  39. * * Redistributions of source code must retain the above copyright
  40. * notice, this list of conditions and the following disclaimer.
  41. * * Redistributions in binary form must reproduce the above copyright
  42. * notice, this list of conditions and the following disclaimer in the
  43. * documentation and/or other materials provided with the distribution.
  44. * * Neither the names of the University of Washington nor Microsoft,
  45. * nor the names of its contributors may be used to endorse or promote
  46. * products derived from this software without specific prior written
  47. * permission.
  48. *
  49. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
  50. * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
  51. * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  52. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Jacob O. Wobbrock OR Andrew D. Wilson
  53. * OR Yang Li BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
  54. * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  55. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  56. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  57. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  58. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  59. **/
  60. using System;
  61. using System.Collections.Generic;
  62. using System.Text;
  63. namespace KinectAPI.Gestures.Dollar
  64. {
  65. public class ProgressEventArgs : System.EventArgs
  66. {
  67. private double _percent;
  68. public ProgressEventArgs(double percent)
  69. {
  70. _percent = percent;
  71. }
  72. public double Percent
  73. {
  74. get
  75. {
  76. return _percent;
  77. }
  78. }
  79. }
  80. public delegate void ProgressEventHandler(object source, ProgressEventArgs e);
  81. }