Skip to content

Commit

Permalink
fix(autoware_auto_geometry): applying changes from https://gitlab.com…
Browse files Browse the repository at this point in the history
  • Loading branch information
ralwing committed Aug 3, 2023
1 parent 1f873b0 commit 80509ab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void compute_height(const IT begin, const IT end, BoundingBox & box)
for (auto & corner : box.corners) {
corner.z = box.centroid.z;
}
box.size.z = (max_z - min_z) * 0.5F;
box.size.z = (max_z - min_z);
}

/// \brief Computes height of bounding box given a full list of points
Expand Down

0 comments on commit 80509ab

Please sign in to comment.