SetRotationXYZ() public method

public SetRotationXYZ ( Vec3 rad, Vec3 t = default(Vec3) ) : void
rad Vec3
t Vec3
return void
コード例 #1
0
ファイル: Matrix.cs プロジェクト: BenChung/CryMono
        public static Matrix34 CreateRotationXYZ(Vec3 rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();

            matrix.SetRotationXYZ(rad, t);

            return(matrix);
        }
コード例 #2
0
        public static Matrix34 CreateRotationXYZ(Vec3 rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetRotationXYZ(rad, t);

            return matrix;
        }