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 b2b52e5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/gyro_free/filter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,12 @@ impl<T> OwnedOrientationEstimator<T> {
self.panic_if_nan();
}

fn rotate_vector_internal(
state: &StateVectorBufferOwnedType<STATES, 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 b2b52e5

Please sign in to comment.