Skip to content

Commit

Permalink
Remove Rarely Used Parts of StuyLib (#84)
Browse files Browse the repository at this point in the history
* Remove Fluff

* Spotless
  • Loading branch information
Sam-Belliveau committed Jan 17, 2024
1 parent 7edb3cd commit f3d75b1
Show file tree
Hide file tree
Showing 54 changed files with 8 additions and 6,524 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,4 @@ public AnglePIDController setDerivativeFilter(IFilter... derivativeFilter) {
mDFilter = IFilter.create(derivativeFilter);
return this;
}

/** @return information about this PIDController */
public String toString() {
return "(P: "
+ SLMath.round(getP(), 4)
+ ", I: "
+ SLMath.round(getI(), 4)
+ ", D: "
+ SLMath.round(getD(), 4)
+ ")";
}
}
Loading

0 comments on commit f3d75b1

Please sign in to comment.