CurveContinuity.cs 642 B

123456789101112131415161718192021
  1. // MIT License - Copyright (C) The Mono.Xna Team
  2. // This file is subject to the terms and conditions defined in
  3. // file 'LICENSE.txt', which is part of this source code package.
  4. namespace CommonLang.Geometry
  5. {
  6. /// <summary>
  7. /// Defines the continuity of keys on a <see cref="Curve"/>.
  8. /// </summary>
  9. public enum CurveContinuity
  10. {
  11. /// <summary>
  12. /// Interpolation can be used between this key and the next.
  13. /// </summary>
  14. Smooth,
  15. /// <summary>
  16. /// Interpolation cannot be used. A position between the two points returns this point.
  17. /// </summary>
  18. Step
  19. }
  20. }