Helper method for path creation

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