Helper method for path creation

This commit is contained in:
2023-12-03 10:30:28 -05:00
parent aad37055d0
commit a28c6f272b
+2 -3
View File
@@ -1053,10 +1053,9 @@ public enum BuildingManager {
outPath.moveTo(vertex.x, vertex.y);
else
outPath.lineTo(vertex.x, vertex.y);
outPath.closePath();
}
outPath.closePath();
return outPath;
}
}