在 adobe illustrator 中随机旋转对象

randomly rotate objects in adobe illustrator

如何在 Adob​​e illustrator 中随机旋转对象。我想问你如何旋转多个相同角度的选定对象并以随机角度旋转它们。

javascript 中的 adobe illustrator 脚本。

您选择的对象只是 Document.selection 中的一个数组,所以:

var min = Number(prompt("Minimum angle?","0"));
var max = Number(prompt("Maximum angle?","360"));

for(var i in activeDocument.selection){
    var angle = Math.floor(Math.random() * (max - min + 1)) + min;
    activeDocument.selection[i].rotate(angle);
}