Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -7,21 +7,21 @@ ...@@ -7,21 +7,21 @@
namespace ale { namespace ale {
// Interpolation enum for defining different methods of interpolating rotations /// Interpolation enum for defining different methods of interpolating rotations
enum RotationInterpolation { enum RotationInterpolation {
// Spherical linear interpolation /// Spherical linear interpolation
SLERP, SLERP,
// Normalized linear interpolation /// Normalized linear interpolation
NLERP NLERP
}; };
// Interpolation enum for defining different methods of interpolating in R /// Interpolation enum for defining different methods of interpolating in R
enum PositionInterpolation { enum PositionInterpolation {
// Interpolate using linear interpolation /// Interpolate using linear interpolation
LINEAR = 0, LINEAR = 0,
// Interpolate using a cubic spline /// Interpolate using a cubic spline
SPLINE = 1, SPLINE = 1,
// Interpolate using Lagrange polynomials up to 8th order /// Interpolate using Lagrange polynomials up to 8th order
LAGRANGE = 2, LAGRANGE = 2,
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment