Merge pull request #47677 from madmiraal/fix-47436-3.x

[3.x] Check ConvexPolygonShape2D point count before calcuating moment of inertia
This commit is contained in:
Rémi Verschelde 2021-04-06 22:35:10 +02:00 committed by GitHub
commit a145f4a5dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -627,6 +627,7 @@ bool ConvexPolygonShape2DSW::intersect_segment(const Vector2 &p_begin, const Vec
real_t ConvexPolygonShape2DSW::get_moment_of_inertia(real_t p_mass, const Size2 &p_scale) const { real_t ConvexPolygonShape2DSW::get_moment_of_inertia(real_t p_mass, const Size2 &p_scale) const {
ERR_FAIL_COND_V_MSG(point_count == 0, 0, "Convex polygon shape has no points.");
Rect2 aabb; Rect2 aabb;
aabb.position = points[0].pos * p_scale; aabb.position = points[0].pos * p_scale;
for (int i = 0; i < point_count; i++) { for (int i = 0; i < point_count; i++) {