JointType.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using RootSystem = System;
  2. using System.Linq;
  3. using System.Collections.Generic;
  4. namespace Windows.Kinect
  5. {
  6. //
  7. // Windows.Kinect.JointType
  8. //
  9. public enum JointType : int
  10. {
  11. SpineBase =0,
  12. SpineMid =1,
  13. Neck =2,
  14. Head =3,
  15. ShoulderLeft =4,
  16. ElbowLeft =5,
  17. WristLeft =6,
  18. HandLeft =7,
  19. ShoulderRight =8,
  20. ElbowRight =9,
  21. WristRight =10,
  22. HandRight =11,
  23. HipLeft =12,
  24. KneeLeft =13,
  25. AnkleLeft =14,
  26. FootLeft =15,
  27. HipRight =16,
  28. KneeRight =17,
  29. AnkleRight =18,
  30. FootRight =19,
  31. SpineShoulder =20,
  32. HandTipLeft =21,
  33. ThumbLeft =22,
  34. HandTipRight =23,
  35. ThumbRight =24,
  36. }
  37. }