var myLayer = app.activeDocument.layers[0]
/**
* 路徑集合方法
* add() 添加一個(gè)路徑對(duì)象
* rectangle(top,left,width,height) 使用提供的參數(shù)創(chuàng)建多邊形形狀的新路徑項(xiàng)。
* polygon(centerX, centerY, radius對(duì)角半徑, sides邊數(shù)) 使用提供的參數(shù)創(chuàng)建多邊形形狀的新路徑項(xiàng)。
* ellipse([top][,left][,width][,height][,reversed][,inscribed]) 使用提供的參數(shù)創(chuàng)建多邊形形狀的新路徑項(xiàng)(圓)。
* roundedRectangle([top][,left][,width][,height][,horizontalRadius水平軸半徑][,verticalRadius垂直軸半徑]) 使用提供的參數(shù)創(chuàng)建圓角多邊形形狀的新路徑項(xiàng)。
* star([centerX][,centerY][,radius外角半徑][,innerRadius內(nèi)角半徑][,points角數(shù)][,reversed]) 使用提供的參數(shù)創(chuàng)建多邊形形狀的新路徑項(xiàng)(星形)。
*/
// myLayer.pathItems.rectangle(-100, 100, 100, 100)
// myLayer.pathItems.polygon(100, 0, 200, 6)
// myLayer.pathItems.ellipse(50, -50, 100, 100)
// myLayer.pathItems.roundedRectangle(0, 0, 100, 100, 5, 10)
// myLayer.pathItems.star(0, 0, 50, 50, 10)
myLayer.pathItems.add()
承擔(dān)因您的行為而導(dǎo)致的法律責(zé)任,
本站有權(quán)保留或刪除有爭(zhēng)議評(píng)論。
參與本評(píng)論即表明您已經(jīng)閱讀并接受
上述條款。