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
 public static Quat CreateExpSlerp(Quat start, Quat end, float amount)
 {
     var q = new Quat();
     q.ExpSlerp(start, end, amount);
     return q;
 }