FairyGUI.NGraphics.AllocTriangleArray C# (CSharp) 메소드

AllocTriangleArray() 개인적인 메소드

private AllocTriangleArray ( int requestSize ) : void
requestSize int
리턴 void
        void AllocTriangleArray(int requestSize)
        {
            if (this.triangles == null
                || this.triangles.Length != requestSize
                || this.triangles == TRIANGLES
                || this.triangles == TRIANGLES_9_GRID
                || this.triangles == TRIANGLES_4_GRID)
                this.triangles = new int[requestSize];
        }