SetScale() public method

public SetScale ( Vec3 s ) : void
s Vec3
return void
コード例 #1
0
ファイル: Matrix.cs プロジェクト: BenChung/CryMono
        public static Matrix33 CreateScale(Vec3 s)
        {
            var matrix = new Matrix33();

            matrix.SetScale(s);

            return(matrix);
        }
コード例 #2
0
        public static Matrix33 CreateScale(Vec3 s)
        {
            var matrix = new Matrix33();
            matrix.SetScale(s);

            return matrix;
        }