Difference between revisions of "ResourcesCSE167F11"
From Immersive Visualization Lab Wiki
(New page: =Text Books and Resources= <!-- <img class="alignleft" src="%ATTACHURLPATH%/shirley-cover.jpg" width=250> <img class="alignright" src="%ATTACHURLPATH%/opengl.png"> --> The instructor reco...) |
(→3D Graphics) |
||
(8 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
=Text Books and Resources= | =Text Books and Resources= | ||
− | |||
− | |||
− | |||
− | |||
− | + | All exam relevant material will be taught in class, and the instructor's lecture slides will be available on-line. For more detailed descriptions of the covered topics, the instructor recommends the following text books for this course. Both are available on-line, at least in older versions, which will work just fine for the class. | |
− | + | {| border="1" style="text-align:left;" | |
− | + | |- | |
− | + | | Peter Shirley, Steve Marschner: ''Fundamentals of Computer Graphics'', Third Edition, 2009 (earlier editions okay for the class). A K Peters Ltd., ISBN 1568811241 [http://www.cs.utah.edu/~shirley/books/fcg2/ Author's site], [http://www.akpeters.com/product.asp?prodcode=2698 Publisher's site], [http://www.amazon.com/Fundamentals-Computer-Graphics-Second-Ed/dp/1568812698/ref=dp_ob_title_bk Amazon.com], [http://books.google.com/books?id=WY5Urwcqsa4C&lpg=PR1&ots=QENdP6x8xd&dq=shirley%20graphics&pg=PR1#v=onepage&q&f=false On-Line at Google Books] | |
+ | | [[Image:shirley-cover-227.jpg]] | ||
+ | |- | ||
+ | | Dave Shreiner: ''OpenGL Programming Guide: The Official Guide to Learning OpenGL, Version 2.1''. Pearson Education, ISBN 8131721841, [http://www.amazon.com/OpenGL-Programming-Guide-Official-Learning/dp/0321552628/ref=dp_ob_title_bk at Amazon]. An older version is on-line: [http://www.glprogramming.com/red/ Version 1.1],[http://fly.srk.fer.hr/~unreal/theredbook/ alternate link], [http://www.opengl.org/resources/code/samples/redbook/ sample programs] | ||
+ | | [[Image:opengl.png]] | ||
+ | |} | ||
=Useful Links= | =Useful Links= | ||
Line 15: | Line 16: | ||
==3D Graphics== | ==3D Graphics== | ||
* [http://www.opengl.org/documentation/blue_book/ OpenGL Reference Manual] (Blue Book) | * [http://www.opengl.org/documentation/blue_book/ OpenGL Reference Manual] (Blue Book) | ||
− | * [http://nehe.gamedev.net/ NeHe Productions OpenGL Tutorials] | + | * [http://duriansoftware.com/joe/An-intro-to-modern-OpenGL.-Table-of-Contents.html Excellent introduction to OpenGL] |
− | * [http://www.realtimerendering.com/ Website | + | * [http://nehe.gamedev.net/ NeHe Productions OpenGL Tutorials: great level of detail but not up to date] |
+ | * [http://www.realtimerendering.com/ Website of the book on real-time rendering] by Tomas Akenine-Moeller with lots of useful links | ||
+ | * Steven C. Dollins' [http://www.cs.brown.edu/~scd/facts.html Handy Mathematics Facts for Graphics] | ||
==Shader Programming== | ==Shader Programming== | ||
Line 23: | Line 26: | ||
* [http://www.opengl.org/sdk/libs/OpenSceneGraph/glsl_quickref.pdf GLSL quick reference] | * [http://www.opengl.org/sdk/libs/OpenSceneGraph/glsl_quickref.pdf GLSL quick reference] | ||
* [http://www.opengl.org/documentation/glsl/ GLSL reference documentation] | * [http://www.opengl.org/documentation/glsl/ GLSL reference documentation] | ||
+ | * [http://www.opengl.org/wiki/GLSL_Sampler#Binding_textures_to_samplers Binding images to GLSL samplers] | ||
==C++ Programming == | ==C++ Programming == | ||
* [http://www.parashift.com/c++-faq-lite/ C++ FAQ by Marshall Cline] | * [http://www.parashift.com/c++-faq-lite/ C++ FAQ by Marshall Cline] | ||
* [http://www-ali.cs.umass.edu/~mckinley/377/labs/c++_for_java_programmers.html C++ for Java programmers] | * [http://www-ali.cs.umass.edu/~mckinley/377/labs/c++_for_java_programmers.html C++ for Java programmers] |
Latest revision as of 00:20, 27 September 2012
Contents |
Text Books and Resources
All exam relevant material will be taught in class, and the instructor's lecture slides will be available on-line. For more detailed descriptions of the covered topics, the instructor recommends the following text books for this course. Both are available on-line, at least in older versions, which will work just fine for the class.
Peter Shirley, Steve Marschner: Fundamentals of Computer Graphics, Third Edition, 2009 (earlier editions okay for the class). A K Peters Ltd., ISBN 1568811241 Author's site, Publisher's site, Amazon.com, On-Line at Google Books | |
Dave Shreiner: OpenGL Programming Guide: The Official Guide to Learning OpenGL, Version 2.1. Pearson Education, ISBN 8131721841, at Amazon. An older version is on-line: Version 1.1,alternate link, sample programs |
Useful Links
3D Graphics
- OpenGL Reference Manual (Blue Book)
- Excellent introduction to OpenGL
- NeHe Productions OpenGL Tutorials: great level of detail but not up to date
- Website of the book on real-time rendering by Tomas Akenine-Moeller with lots of useful links
- Steven C. Dollins' Handy Mathematics Facts for Graphics
Shader Programming
- Lighthouse3D GLSL tutorials
- Clockworkcoders GLSL tutorials
- GLSL quick reference
- GLSL reference documentation
- Binding images to GLSL samplers