Skip to content

Commit

Permalink
Revert "added docs page"
Browse files Browse the repository at this point in the history
This reverts commit cca533a.
  • Loading branch information
ZacharyTaylor committed Nov 20, 2018
1 parent cca533a commit ca0b4d4
Show file tree
Hide file tree
Showing 24 changed files with 525 additions and 3,167 deletions.
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,3 @@

# Matlab
*.m~

docs/_build
docs/doxyoutput
docs/api
2,455 changes: 0 additions & 2,455 deletions docs/Doxyfile

This file was deleted.

20 changes: 0 additions & 20 deletions docs/Makefile

This file was deleted.

46 changes: 0 additions & 46 deletions docs/conf.py

This file was deleted.

53 changes: 0 additions & 53 deletions docs/index.rst

This file was deleted.

65 changes: 0 additions & 65 deletions docs/pages/Time-Allocation.md

This file was deleted.

1 change: 0 additions & 1 deletion docs/requirements.txt

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

namespace mav_trajectory_generation {

/// Container holding the properties of an extremum (time, value,
/// segment where it occurred).
// Container holding the properties of an extremum (time, value,
// segment where it occurred).
struct Extremum {
public:
Extremum() : time(0.0), value(0.0), segment_idx(0) {}
Expand All @@ -38,9 +38,9 @@ struct Extremum {
bool operator>(const Extremum& rhs) const { return value > rhs.value; }

double
time; ///< Time where the extremum occurs, relative to the segment start.
double value; ///< Value of the extremum at time.
int segment_idx; ///< Index of the segment where the extremum occurs.
time; // Time where the extremum occurs, relative to the segment start.
double value; // Value of the extremum at time.
int segment_idx; // Index of the segment where the extremum occurs.
};

inline std::ostream& operator<<(std::ostream& stream, const Extremum& e) {
Expand Down
Loading

0 comments on commit ca0b4d4

Please sign in to comment.