diff --git a/include/ale/InterpUtils.h b/include/ale/InterpUtils.h index 6251746337d64e3170847c96bd5a3221bf4f1da4..b666ccc0a262503fa202bac46860e71f4c3996c8 100644 --- a/include/ale/InterpUtils.h +++ b/include/ale/InterpUtils.h @@ -7,21 +7,21 @@ namespace ale { - // Interpolation enum for defining different methods of interpolating rotations + /// Interpolation enum for defining different methods of interpolating rotations enum RotationInterpolation { - // Spherical linear interpolation + /// Spherical linear interpolation SLERP, - // Normalized linear interpolation + /// Normalized linear interpolation NLERP }; - // Interpolation enum for defining different methods of interpolating in R + /// Interpolation enum for defining different methods of interpolating in R enum PositionInterpolation { - // Interpolate using linear interpolation + /// Interpolate using linear interpolation LINEAR = 0, - // Interpolate using a cubic spline + /// Interpolate using a cubic spline SPLINE = 1, - // Interpolate using Lagrange polynomials up to 8th order + /// Interpolate using Lagrange polynomials up to 8th order LAGRANGE = 2, };