diff options
| author | Sébastien Crozet <developer@crozet.re> | 2023-01-15 13:01:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-15 13:01:27 +0100 |
| commit | ff4c885195eb6adef2a318134aedcb985b6e88b4 (patch) | |
| tree | f797275613e2fac3e423f647363bcf74c5a0ccd3 /src/lib.rs | |
| parent | 56aa0f5e732a2f810b5c1d5834905791f542cf48 (diff) | |
| parent | 3f5c0335e45a75ba435ef7dee3d203b11ec072d0 (diff) | |
| download | rapier-ff4c885195eb6adef2a318134aedcb985b6e88b4.tar.gz rapier-ff4c885195eb6adef2a318134aedcb985b6e88b4.tar.bz2 rapier-ff4c885195eb6adef2a318134aedcb985b6e88b4.zip | |
Merge pull request #436 from dimforge/release-v0.17
Release v0.17.0
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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")] |
