SetRotationY() public method

public SetRotationY ( float r ) : void
r float
return void
コード例 #1
0
        public static Quat CreateRotationY(float r)
        {
            var q = new Quat();

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