Filter: Add Vector2f option to notch filter

This commit is contained in:
Michelle Rossouw 2021-06-17 16:36:03 +10:00 committed by Andrew Tridgell
parent f95cb16434
commit 3379a1a215
2 changed files with 2 additions and 0 deletions

View File

@ -146,4 +146,5 @@ NotchFilterParams::NotchFilterParams(void)
instantiate template classes
*/
template class NotchFilter<float>;
template class NotchFilter<Vector2f>;
template class NotchFilter<Vector3f>;

View File

@ -66,5 +66,6 @@ protected:
};
typedef NotchFilter<float> NotchFilterFloat;
typedef NotchFilter<Vector2f> NotchFilterVector2f;
typedef NotchFilter<Vector3f> NotchFilterVector3f;