Skip to content

Commit

Permalink
Resolve unfindable type
Browse files Browse the repository at this point in the history
  • Loading branch information
sunsided committed Jul 13, 2024
1 parent 964867e commit 289a0f1
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/gyro_free/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,9 @@ impl<T> OwnedOrientationEstimator<T> {
self.panic_if_nan();
}

fn rotate_vector_internal(
state: &StateVectorBufferOwnedType<STATES, T>,
vec: Vector3<T>,
) -> Vector3<T>
fn rotate_vector_internal<V>(state: &V, vec: Vector3<T>) -> Vector3<T>
where
V: RowVectorMut<STATES, T>,
T: MatrixDataType,
{
let q0 = state.get_row(0);
Expand Down

0 comments on commit 289a0f1

Please sign in to comment.