mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-02 00:22:09 +00:00
11 lines
No EOL
554 B
JavaScript
11 lines
No EOL
554 B
JavaScript
`#version 4`;
|
|
`#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 = UDB.Map.getSelectedOrHighlightedSectors();
|
|
|
|
if(sectors.length == 0)
|
|
UDB.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 => UDB.Map.drawLines([...t, t[0]]))); |