brlrt / away3d

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

Pano2VR's "Skybox6" pictures don't display properly #17

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Convert a Equirectangular image to a 3x2 image in Pano2VR
2. Load the image into the Skybox example
3.

What is the expected output? What do you see instead?
The top tile is rotate by 180 deg (not flipped)

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

Please provide any additional information below.
I modified Lines 88 and 89

addFace(new Face(v010, v011, v110, null, uvupb, uvupc, uvupa));
addFace(new Face(v011, v111, v110, null, uvupc, uvupd, uvupa));

to

addFace(new Face(v010, v011, v110, null, uvupd, uvupa, uvupc));
addFace(new Face(v011, v111, v110, null, uvupa, uvupb, uvupc));

Original issue reported on code.google.com by rudolph...@gmail.com on 25 Sep 2008 at 5:57

Attachments:

GoogleCodeExporter commented 8 years ago
this issue is fixed in revision 809

Original comment by rob.bate...@gmail.com on 11 Nov 2008 at 5:28