シェイプレイヤーパスの真ん中の座標を取る方法 [AfterEffects][Expression]
4181 ワード
#シェイプ事の真ん中座標
テキストをシェイプに変換してテキストキャラ毎(文字毎)に真ん中の座標を取得する方法
val = thisComp.layer("timetoeditアウトライン").content("t 2").content("t").path.points(0);
function center(arr){
var tempx = [];
var tempy = [];
for (var i =0; i < arr.length ; i++){
tempx.push(arr[i][0])
tempy.push(arr[i][1])
}
var x = (Math.min.apply(null,tempx)+Math.max.apply(null,tempx))/2;
var y = (Math.min.apply(null,tempy)+Math.max.apply(null,tempy))/2;
return [x,y]
}
center(val)
Author And Source
この問題について(シェイプレイヤーパスの真ん中の座標を取る方法 [AfterEffects][Expression]), 我々は、より多くの情報をここで見つけました https://qiita.com/TimeToEdit/items/39c2c47fe1c2a21691fb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .