From c6a15f1b9bd0ed2fce7a50b69f03a8145ee2d32d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20W=C5=82ostowski?= Date: Wed, 29 Nov 2017 19:50:16 +0100 Subject: [PATCH] SHAPE_POLY_SET: fix empty triangulation bug --- common/geometry/shape_poly_set.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/geometry/shape_poly_set.cpp b/common/geometry/shape_poly_set.cpp index 10e70d4f57..086a360c40 100644 --- a/common/geometry/shape_poly_set.cpp +++ b/common/geometry/shape_poly_set.cpp @@ -1917,6 +1917,7 @@ void SHAPE_POLY_SET::TRIANGULATED_POLYGON::AllocateVertices( int aSize ) void SHAPE_POLY_SET::TRIANGULATED_POLYGON::AllocateTriangles( int aSize ) { m_triangles = new TRI[aSize]; + m_triangleCount = aSize; }