PageRenderTime 121ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/Rendering/Cameras/InterpolationMode.cs

#
C# | 25 lines | 0 code | 1 blank | 24 comment | 0 complexity | efbfc29a59e195759e6d7557ad49ae4e MD5 | raw file
Possible License(s): Apache-2.0
  1. /*
  2. namespace Delta.Rendering.Cameras
  3. {
  4. /// <summary>
  5. /// Interpolation mode
  6. /// </summary>
  7. public enum InterpolationMode
  8. {
  9. /// <summary>
  10. /// No interpolation.
  11. /// </summary>
  12. Normal,
  13. /// <summary>
  14. /// Linear interpolation.
  15. /// </summary>
  16. Linear,
  17. /// <summary>
  18. /// Not implemented.
  19. /// Curve interpolation.
  20. /// </summary>
  21. Curve,
  22. }
  23. }
  24. */