ExpSlerp() public method

public ExpSlerp ( Quat start, Quat end, float amount ) : void
start Quat
end Quat
amount float
return void
コード例 #1
0
        public static Quat CreateExpSlerp(Quat start, Quat end, float amount)
        {
            var q = new Quat();

            q.ExpSlerp(start, end, amount);
            return(q);
        }
コード例 #2
0
ファイル: Quat.cs プロジェクト: jbjhjm/legendsofdrakan
 public static Quat CreateExpSlerp(Quat start, Quat end, float amount)
 {
     var q = new Quat();
     q.ExpSlerp(start, end, amount);
     return q;
 }