Guest User

Untitled

a guest
May 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. package com.spot.motion.util;
  2.  
  3. /**
  4. * <code>Direction</code> defines all the directions.
  5. *
  6. * @author Chaoran Xie
  7. * @author Yi Wang (Neakor)
  8. * @version Creation date: 22:29 10-12-2008
  9. * @version Modified date: 22:33 10-12-2008
  10. */
  11. public final class Direction {
  12. /**
  13. * The positive x direction.
  14. */
  15. public static final int Positive_X = 0;
  16. /**
  17. * The negative x direction.
  18. */
  19. public static final int Negative_X = 1;
  20. /**
  21. * The positive y direction.
  22. */
  23. public static final int Positive_Y = 2;
  24. /**
  25. * The negative y direction.
  26. */
  27. public static final int Negative_Y = 3;
  28. /**
  29. * The positive z direction.
  30. */
  31. public static final int Positive_Z = 4;
  32. /**
  33. * The negative z direction.
  34. */
  35. public static final int Negative_Z = 5;
  36. /**
  37. * The shake action.
  38. */
  39. public static final int Shake = 6;
  40. /**
  41. * The invalid direction.
  42. */
  43. public static final int Invalid = 7;
  44. }
Add Comment
Please, Sign In to add comment