UltimateZoneBuilder/Build/UDBScript/Scripts/Examples/Geometry/triangulatesectors.js

10 lines
528 B
JavaScript
Raw Normal View History

`#name Triangulate Sectors`;
`#description Triangulates the selected or highlighted sectors into new sectors. Note that the triangulation will not "be beautiful", and that the sectors with islands may cause problems.`;
let sectors = Map.getSelectedOrHighlightedSectors();
if(sectors.length == 0)
die('No sectors selected or highlighted');
// Draw all triangles. Remember to add the first point at the end so that the drawing will be closed
sectors.forEach(s => s.getTriangles().forEach(t => Map.drawLines([...t, t[0]])));