じゃ、わたしからは三角形の第2頂点を他の頂点の真ん中に持ってくるワンライナーを
var pt=app.selection[0].selectedPathPoints;var ak=pt[1].anchor,df=(pt[0].anchor[0]+pt[2].anchor[0])/2;var lt=pt[1].leftDirection;var rt=pt[1].rightDirection;pt[1].leftDirection=[lt[0]-pt[1].anchor[0]+df, lt[1]];pt[1].rightDirection=[rt[0]-pt[1].anchor[0]+df, rt[1]];pt[1].anchor=[df, pt[1].anchor[1]];
... View more