SetRotationZ() public method

public SetRotationZ ( float rad, Vec3 t = default(Vec3) ) : void
rad float
t Vec3
return void
示例#1
0
        public static Matrix34 CreateRotationZ(float rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();

            matrix.SetRotationZ(rad, t);

            return(matrix);
        }
示例#2
0
        public static Matrix34 CreateRotationZ(float rad, Vec3 t = default(Vec3))
        {
            var matrix = new Matrix34();
            matrix.SetRotationZ(rad, t);

            return matrix;
        }