Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix clippy::doc_lazy_continuation lints #238

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/bounding_volume/aabb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ impl Aabb {
/// # Arguments:
/// * `mins` - position of the point with the smallest coordinates.
/// * `maxs` - position of the point with the highest coordinates. Each component of `mins`
/// must be smaller than the related components of `maxs`.
/// must be smaller than the related components of `maxs`.
#[inline]
pub fn new(mins: Point<Real>, maxs: Point<Real>) -> Aabb {
Aabb { mins, maxs }
Expand Down
8 changes: 4 additions & 4 deletions src/query/gjk/gjk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ pub fn project_origin<G: ?Sized + SupportMap>(
/// * simplex - the simplex to be used by the GJK algorithm. It must be already initialized
/// with at least one point on the shape boundary.
/// * exact_dist - if `false`, the gjk will stop as soon as it can prove that the origin is at
/// a distance smaller than `max_dist` but not inside of `shape`. In that case, it returns a
/// `GJKResult::Proximity(sep_axis)` where `sep_axis` is a separating axis. If `false` the gjk will
/// compute the exact distance and return `GJKResult::Projection(point)` if the origin is closer
/// than `max_dist` but not inside `shape`.
/// a distance smaller than `max_dist` but not inside of `shape`. In that case, it returns a
/// `GJKResult::Proximity(sep_axis)` where `sep_axis` is a separating axis. If `false` the gjk will
/// compute the exact distance and return `GJKResult::Projection(point)` if the origin is closer
/// than `max_dist` but not inside `shape`.
pub fn closest_points<G1, G2>(
pos12: &Isometry<Real>,
g1: &G1,
Expand Down
1 change: 1 addition & 0 deletions src/shape/polyline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ impl Polyline {
/// `num_indices == self.indices.len()`.
/// - This polyline is oriented counter-clockwise.
/// - In 3D, the polyline is assumed to be fully coplanar, on a plane with normal given by
Vrixyz marked this conversation as resolved.
Show resolved Hide resolved
///
/// These properties are not checked.
pub fn project_local_point_assuming_solid_interior_ccw(
&self,
Expand Down