PanoViewer.dpr 693 B

12345678910111213141516171819202122232425262728
  1. {
  2. Simple spherical panorama viewer using GLScene
  3. The sample input images are by Philippe Hurbain. http://www.philohome.com
  4. Other resources on how to make your own spherical or cylindrical panorama:
  5. http://www.fh-furtwangen.de/~dersch/
  6. http://www.panoguide.com/
  7. http://home.no.net/dmaurer/~dersch/Index.htm
  8. Why IPIX patents regarding use of fisheye photos are questionable:
  9. http://www.worldserver.com/turk/quicktimevr/fisheye.html
  10. 10/12/02 - EG - Updated for GLScene v0.9+
  11. }
  12. program PanoViewer;
  13. uses
  14. Forms,
  15. fPanoViewer in 'fPanoViewer.pas' {Form1};
  16. {$R *.RES}
  17. begin
  18. Application.Initialize;
  19. Application.CreateForm(TForm1, Form1);
  20. Application.Run;
  21. end.