Skip to content

Commit 612392f

Browse files
authored
Release v0.19.0 (#335)
* Release v0.19.0 * chore: clippy fixes
1 parent 626f0c3 commit 612392f

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## Unreleased
3+
## v0.19.0
44

55
### Added
66

crates/parry2d-f64/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parry2d-f64"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "2 dimensional collision detection library in Rust. 64-bit precision version."

crates/parry2d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parry2d"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "2 dimensional collision detection library in Rust."

crates/parry3d-f64/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parry3d-f64"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "3 dimensional collision detection library in Rust. 64-bits precision version."

crates/parry3d/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parry3d"
3-
version = "0.18.0"
3+
version = "0.19.0"
44
authors = ["Sébastien Crozet <developer@crozet.re>"]
55

66
description = "3 dimensional collision detection library in Rust."

src/bounding_volume/aabb.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,8 +180,8 @@ impl Aabb {
180180
///
181181
/// # Parameters
182182
/// - `scale`: the scaling factor. It can be non-uniform and/or negative. The AABB being
183-
/// symmetric wrt. its center, a negative scale value has the same effect as scaling
184-
/// by its absolute value.
183+
/// symmetric wrt. its center, a negative scale value has the same effect as scaling
184+
/// by its absolute value.
185185
#[inline]
186186
#[must_use]
187187
pub fn scaled_wrt_center(self, scale: &Vector<Real>) -> Self {

src/query/gjk/gjk.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ pub fn project_origin<G: ?Sized + SupportMap>(
7373
/// from the origin.
7474
///
7575
/// # Arguments:
76-
/// * simplex - the simplex to be used by the GJK algorithm. It must be already initialized
77-
/// with at least one point on the shape boundary.
78-
/// * exact_dist - if `false`, the gjk will stop as soon as it can prove that the origin is at
76+
/// * `simplex` - the simplex to be used by the GJK algorithm. It must be already initialized
77+
/// with at least one point on the shape boundary.
78+
/// * `exact_dist` - if `false`, the gjk will stop as soon as it can prove that the origin is at
7979
/// a distance smaller than `max_dist` but not inside of `shape`. In that case, it returns a
8080
/// `GJKResult::Proximity(sep_axis)` where `sep_axis` is a separating axis. If `false` the gjk will
8181
/// compute the exact distance and return `GJKResult::Projection(point)` if the origin is closer

src/query/query_dispatcher.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ pub trait QueryDispatcher: Send + Sync {
9999
/// # Parameters
100100
/// - `pos12`: the position of the second shape relative to the first shape.
101101
/// - `local_vel12`: the relative velocity between the two shapes, expressed in the local-space
102-
/// of the first shape. In other world: `pos1.inverse() * (vel2 - vel1)`.
102+
/// of the first shape. In other world: `pos1.inverse() * (vel2 - vel1)`.
103103
/// - `g1`: the first shape involved in the shape-cast.
104104
/// - `g2`: the second shape involved in the shape-cast.
105105
/// - `target_dist`: a hit will be returned as soon as the two shapes get closer than `target_dist`.
106106
/// - `max_time_of_impact`: the maximum allowed travel time. This method returns `None` if the time-of-impact
107-
/// detected is theater than this value.
107+
/// detected is theater than this value.
108108
fn cast_shapes(
109109
&self,
110110
pos12: &Isometry<Real>,

0 commit comments

Comments
 (0)