/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
- /*
- namespace Delta.Rendering.Cameras
- {
- /// <summary>
- /// Interpolation mode
- /// </summary>
- public enum InterpolationMode
- {
- /// <summary>
- /// No interpolation.
- /// </summary>
- Normal,
- /// <summary>
- /// Linear interpolation.
- /// </summary>
- Linear,
- /// <summary>
- /// Not implemented.
- /// Curve interpolation.
- /// </summary>
- Curve,
- }
- }
- */
-