object faces problem

hi there,
I’ve build my terrain as a mesh object from a STL file, the result was a mirror terrain from the original, so I transform the x value of every vertex to be -x. the new terrain was ok, except the faces are now wrong and I have no idea how to fix it.
for the first mirror image I used simple indices for the faces 0-71182, but now it does’nt work.

any help
10x

When you “flip” the x-axis, the ordering is no longer correct, as you noted. The reason is that a vertex which was previously to the “right” of its neighbor, is now on the “left”.

You can change the winding of your faces if you like. Assuming you have CCW now, you can change it to CW before the draw call of your program.

Hope that is enough to help you.

Please define “the faces are now wrong”.

Some possible pitfalls :