aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2023-01-15 11:59:15 +0100
committerSébastien Crozet <developer@crozet.re>2023-01-15 12:17:10 +0100
commit9b5ccb95e74350d4fb3b4bc2c4c9fbf9fb4943a2 (patch)
tree5ccfe3e37b2fb11ed1c99d97afe245460865afb3 /src/lib.rs
parent56aa0f5e732a2f810b5c1d5834905791f542cf48 (diff)
downloadrapier-9b5ccb95e74350d4fb3b4bc2c4c9fbf9fb4943a2.tar.gz
rapier-9b5ccb95e74350d4fb3b4bc2c4c9fbf9fb4943a2.tar.bz2
rapier-9b5ccb95e74350d4fb3b4bc2c4c9fbf9fb4943a2.zip
Update dependencies
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 0c640c7..b863807 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -157,11 +157,11 @@ pub mod math {
/// The type of a slice of the constraint Jacobian in twist coordinates.
#[cfg(feature = "dim2")]
- pub type JacobianSlice<'a, N> = na::MatrixSlice3xX<'a, N>;
+ pub type JacobianView<'a, N> = na::MatrixView3xX<'a, N>;
/// The type of a mutable slice of the constraint Jacobian in twist coordinates.
#[cfg(feature = "dim2")]
- pub type JacobianSliceMut<'a, N> = na::MatrixSliceMut3xX<'a, N>;
+ pub type JacobianViewMut<'a, N> = na::MatrixViewMut3xX<'a, N>;
/// The maximum number of possible rotations and translations of a rigid body.
#[cfg(feature = "dim2")]
@@ -186,11 +186,11 @@ pub mod math {
/// The type of a slice of the constraint Jacobian in twist coordinates.
#[cfg(feature = "dim3")]
- pub type JacobianSlice<'a, N> = na::MatrixSlice6xX<'a, N>;
+ pub type JacobianView<'a, N> = na::MatrixView6xX<'a, N>;
/// The type of a mutable slice of the constraint Jacobian in twist coordinates.
#[cfg(feature = "dim3")]
- pub type JacobianSliceMut<'a, N> = na::MatrixSliceMut6xX<'a, N>;
+ pub type JacobianViewMut<'a, N> = na::MatrixViewMut6xX<'a, N>;
/// The maximum number of possible rotations and translations of a rigid body.
#[cfg(feature = "dim3")]