I was taking a look at this example, http://gardengnomesoftware.com/samples/pano2vr_3/mozart/ and I was really interested in how it was done.

Do you think it would be complicated to develop such a function using one of the webgl engines out there? Is the panorama image just a texture on a cylindrical model? How is the panorama "cut?"

Perhaps it is just a cube with the images as a texture? You can kind of see the faces when it is loading slowly.

link|improve this question

68% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Yes, in this case it is simply a cube that the "camera" is centered in. It's basically the same concept as a skybox in many video games.

How to create a cube-map from photos the way they've done isn't something I have experience with, but the wikipedia article links to some tools that may help, including Hugin

link|improve this answer
You don't need a box or a sphere. That's left over from fixed function days. All you need is a clipspace plane and a shader. Sorry I don't have a three.js sample but here's a tdl one webglsamples.googlecode.com/hg/modern-skybox/modern-skybox.html – gman Dec 15 '11 at 19:46
Good point! I think most people can visualize a box better, though. Nice demo of the technique, BTW! – Toji Dec 16 '11 at 4:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.