论坛帮助 |
社区圈子 |
日历事件 |
2020-12-25, 10:57 | 只看该作者 #3 | |||
|
||||
VIP会员
等级: 七袋长老
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////// var doc=app.activeDocument; var sel=doc.selection; matrix =sel[0].matrix;//链接图单一对象 rotation = 180/Math.PI * Math.atan2(matrix.mValueC, matrix.mValueD) if(rotation<0){alert('逆时针 '+(180+Number(rotation)).toFixed(3)+' 度')} else{alert('顺时针 '+(180-Number(rotation)).toFixed(3)+' 度')} ////////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
|||
2020-12-25, 11:32 | 只看该作者 #4 | ||
|
|||
java爱好者
等级: 六袋长老
|
引用:
|
||