File tree Expand file tree Collapse file tree 8 files changed +12
-12
lines changed
Expand file tree Collapse file tree 8 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3- ## Unreleased
3+ ## v0.19.0
44
55### Added
66
Original file line number Diff line number Diff line change 11[package ]
22name = " parry2d-f64"
3- version = " 0.18 .0"
3+ version = " 0.19 .0"
44authors = [" Sébastien Crozet <developer@crozet.re>" ]
55
66description = " 2 dimensional collision detection library in Rust. 64-bit precision version."
Original file line number Diff line number Diff line change 11[package ]
22name = " parry2d"
3- version = " 0.18 .0"
3+ version = " 0.19 .0"
44authors = [" Sébastien Crozet <developer@crozet.re>" ]
55
66description = " 2 dimensional collision detection library in Rust."
Original file line number Diff line number Diff line change 11[package ]
22name = " parry3d-f64"
3- version = " 0.18 .0"
3+ version = " 0.19 .0"
44authors = [" Sébastien Crozet <developer@crozet.re>" ]
55
66description = " 3 dimensional collision detection library in Rust. 64-bits precision version."
Original file line number Diff line number Diff line change 11[package ]
22name = " parry3d"
3- version = " 0.18 .0"
3+ version = " 0.19 .0"
44authors = [" Sébastien Crozet <developer@crozet.re>" ]
55
66description = " 3 dimensional collision detection library in Rust."
Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 > ,
You can’t perform that action at this time.
0 commit comments