pablophg/min3d

In Retangle pictures are left right reversed

Opened this issue · 0 comments

What steps will reproduce the problem?
In Retangle pictures are left right reversed

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.

for (row = 0; row <= $segsH; row++)
        {
            for (col = 0; col <= $segsW; col++)
            {
                this.vertices().addVertex(
                    (float)col*w - width5, (float)row*h - height5,0f,   
                    1-(float)col/(float)$segsW, 1-(float)row/(float)$segsH, 
                    0,0,1f, 
                    color.r, color.g, color.b, color.a
                );
            }
        }

Original issue reported on code.google.com by hydraw...@gmail.com on 23 Mar 2012 at 8:04