// MIT License - Copyright (C) The Mono.Xna Team // This file is subject to the terms and conditions defined in // file 'LICENSE.txt', which is part of this source code package. namespace CommonLang.Geometry { /// /// Defines the continuity of keys on a . /// public enum CurveContinuity { /// /// Interpolation can be used between this key and the next. /// Smooth, /// /// Interpolation cannot be used. A position between the two points returns this point. /// Step } }