jaydeepmalviay / min3d

Automatically exported from code.google.com/p/min3d
0 stars 0 forks source link

In Retangle pictures are left right reversed #76

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
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