-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from Mineinjava/kalman-filter-rotation
add rotation to kalman filter
- Loading branch information
Showing
3 changed files
with
81 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
quail/src/test/java/quail/pathing/KalmanFilterLocalizerTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (C) Marcus Kauffman 2023-Present | ||
|
||
// This work would not have been possible without the work of many | ||
// contributors, most notably Colin Montigel. See ACKNOWLEDGEMENT.md for | ||
// more details. | ||
|
||
// This file is part of Quail. | ||
|
||
// Quail is free software: you can redistribute it and/or modify it | ||
// underthe terms of the GNU General Public License as published by the | ||
// Free Software Foundation, version 3. | ||
|
||
// Quail is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
// for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Quail. If not, see <https://www.gnu.org/licenses/> | ||
|
||
package quail.pathing; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
/** KalmanFilterLocalizer */ | ||
public class KalmanFilterLocalizerTest { | ||
@Test | ||
void constructor() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters