Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个方阵(每边可能是偶数或奇数 nr 个项目),我希望将它旋转 180 度。那是旋转,而不是翻转。
我发现了许多不同形状的 90 度旋转,但没有找到 180 度的旋转。我的矩阵可能非常大,以至于无法接受 2x 90 度运行。
尝试以下操作:
grid.reverse().forEach(function(item) { item.reverse(); } ); console.log(grid);