0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AE 平行四辺形 作成

Last updated at Posted at 2018-06-05

斜めのボックスを綺麗に作りたい時のエクスプレッション

001.JPG

前提として
・シェイプレイヤーに4つのポイントを持ったパスがある事が
・シェイプレイヤー自身にスライダーが2つ追加されている事。(今回のエクスプレッションで使用しているだけ)
002.JPG

エクスプレッションソース

tw = thisComp.width; 
th = thisComp.height;
Linelength = effect("Line length")("スライダー");
LineShift = effect("Line Shift")("スライダー");
createPath(points = [[0,-th/2], [Linelength,-th/2], [Linelength+LineShift ,th/2],[0+LineShift,th/2],], inTangents = [], outTangents = [], is_closed = true)
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?