Commit 0d0bcf4c authored by Jesse Mapel's avatar Jesse Mapel
Browse files

Fixed enum docs

Going to 2 slashes instead of 3 broke doxygen docs for enums. This reverts back to 3 slashes to fix it.
parent 7473af82
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -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,
  };