Buy new:
$60.95$60.95
FREE delivery:
Tuesday, March 14
Ships from: Amazon.com Sold by: Amazon.com
Buy used: $34.98
Other Sellers on Amazon
+ $3.99 shipping
85% positive over last 12 months
Usually ships within 3 to 4 days.
Download the free Kindle app and start reading Kindle books instantly on your smartphone, tablet, or computer - no Kindle device required. Learn more
Read instantly on your browser with Kindle for Web.
Using your mobile phone camera - scan the code below and download the Kindle app.
Jim Blinn's Corner: A Trip Down the Graphics Pipeline (The Morgan Kaufmann Series in Computer Graphics) 1st Edition
Enhance your purchase
Blinn shares his insight and experience in "Jim Blinn's Corner," an award-winning column in the technical magazine IEEE Computer Graphics and Applications in which he unveils his most useful graphics methods and observations. This book, a compendium of 20 of the column's articles, leads you through the "graphics pipeline" offering a wealth of tips and tricks. It explores common graphics problems, many of which have never before been addressed.
An invaluable resource for any graphics professional
In his entertaining and inspirational style, Blinn examines a variety of topics to help computer graphics software and application developers recognize and solve graphics programming problems. Focusing on geometry and the graphics pipeline, he shares:
- easy to understand explanations of difficult concepts gleaned from years of teaching
- interesting examples of tricky special cases that cause conventional algorithms to fail
- highly refined algorithms for clipping, viewing, lighting, and rendering
- ISBN-101558603875
- ISBN-13978-1558603875
- Edition1st
- PublisherMorgan Kaufmann
- Publication dateJuly 15, 1996
- LanguageEnglish
- Dimensions7.37 x 0.51 x 9.19 inches
- Print length214 pages
Frequently bought together

- +
- +
Customers who viewed this item also viewed
Editorial Reviews
Amazon.com Review
Topics include a tour through the author's collection of circle-drawing algorithms, an introduction to animation concepts through a character called Blobby Man, musings on rendering platonic solids, detailed discussions of shadows, clipping and viewports, and investigations into the nature of pixel space. Many algorithms are presented in a generalized pseudo-code that could be easily translated into other languages. In addition to learning practical techniques, you'll also benefit from seeing Blinn's intelligent and offbeat approach to solving problems.
From the Back Cover
Learn from the master
For almost three decades eminent computer graphicist Jim Blinn has coupled his scientific knowledge and artistic abilities to foster the growth of the computer graphics field. His many contributions include the Voyager Fly-by animations of space missions to Jupiter, Saturn, and Uranus; The Mechanical Universe, a 52-part telecourse of animated physics; and the computer animation of Carl Sagan's PBS series Cosmos. In addition, Blinn, the recipient of the first SIGGRAPH Computer Graphics Achievement Award, has developed many widely used graphics techniques, including bump mapping, environment mapping, and blobby modeling.
Blinn shares his insight and experience in "Jim Blinn's Corner," an award-winning column in the technical magazine IEEE Computer Graphics and Applications in which he unveils his most useful graphics methods and observations. This book, a compendium of 20 of the column's articles, leads you through the "graphics pipeline" offering a wealth of tips and tricks. It explores common graphics problems, many of which have never before been addressed.
An invaluable resource for any graphics professional
In his entertaining and inspirational style, Blinn examines a variety of topics to help computer graphics software and application developers recognize and solve graphics programming problems. Focusing on geometry and the graphics pipeline, he shares:
- easy to understand explanations of difficult concepts gleaned from years of teaching
- interesting examples of tricky special cases that cause conventional algorithms to fail
- highly refined algorithms for clipping, viewing, lighting, and rendering
About the Author
For over three decades, eminent computer graphicist Jim Blinn has coupled his scientific knowledge and artistic abilities to foster the growth of the computer graphics field. His many contributions include the Voyager flyby animations of space missions to Jupiter, Saturn, and Uranus; The Mechanical Universe, a 52-part telecourse of animated physics; and the computer animation of Carl Sagan's PBS series Cosmos. In addition, Blinn is the recipient of the SIGGRAPH Computer Graphics Achievement Award as well as the SIGGRAPH Coons Award, and has developed many widely used graphics techniques, including bump mapping, environment mapping, and blobby modeling. In 2000, he was elected to the National Academy of Engineering. He currently works at Microsoft Research.
Product details
- Publisher : Morgan Kaufmann; 1st edition (July 15, 1996)
- Language : English
- Paperback : 214 pages
- ISBN-10 : 1558603875
- ISBN-13 : 978-1558603875
- Item Weight : 13.8 ounces
- Dimensions : 7.37 x 0.51 x 9.19 inches
- Best Sellers Rank: #646,338 in Books (See Top 100 in Books)
- #75 in Computer Graphics
- #209 in Graphics & Multimedia Programming
- #1,183 in Computer Graphics & Design
- Customer Reviews:
About the author

Discover more of the author’s books, see similar authors, read author blogs and more
Customer reviews
Customer Reviews, including Product Star Ratings help customers to learn more about the product and decide whether it is the right product for them.
To calculate the overall star rating and percentage breakdown by star, we don’t use a simple average. Instead, our system considers things like how recent a review is and if the reviewer bought the item on Amazon. It also analyzed reviews to verify trustworthiness.
Learn more how customers reviews work on Amazon-
Top reviews
Top reviews from the United States
There was a problem filtering reviews right now. Please try again later.
1. How Many Ways Can You Draw a Circle?
For people who can program and who can draw points and lines on some system this is a splendid introduction to the way math is used in computer graphics. The "exercises" range from easy to medium hard.
2. What, Teapots Again?
Martin Newell's Teapot is the trademark of computer graphics. The GLUT library for OpenGL has a pre-computed object called the teapotahedron, right along with the dodecahedron and the icosahedron. Here are the coordinates if you want a teapotahedron of your very own in whatever graphics system you want.
3. Nested Transformations and Blobby Man
This is a classic exercise in how matrix algebra makes articulation trees easy to program. It basically uses a set of scaled and translated geometric primitives such as spheres to "build up" the crude figure of a man. This chapter might be useful to robotics students looking for a project.
4. Platonic Solids
The platonic solids are widely used as sample objects. They are the tetrahedron, hexahedron, octahedron, icosahedron, and dodecahedron. Blinn intends this to be a "hip pocket" program for the five platonic solids, something you can tuck away in your memory. OpenGL+GLUT has all these solids as primitives, so this is something you should study once as part of your general computer graphics education.
5. How to Write a Paper for SIGGRAPH
Chapters 5,7,12 and 20 are more about programmers than about programming. It makes for amusing reading, and if you take Blinns advice to heart now, you may improve your technical writing style in other areas too.
6. Me and My (Fake) Shadow
It should be mentioned beforehand that this methods merely allows shadows to be cast on flat ground. This means two things: it can only be used to cast a shadow on a flat surface AND it can only cast the shadow of one object. Blinn admits to having first attempted a hack approach to solve the problem in an unintuitive but slightly quicker way. He also presents his revised methodical approach and shows problems with it.
7. Things I Hope Not to See or Hear at SIGGRAPH
Talks about what makes a bad presentation - Talks read verbatim, illegible slides, micro-sized text, magenta lines on a cyan background, the entire talk echoed on slides, the fading voice, "I'm Almost Out of Time so I'll Just Run Through the Rest of These Slides Real Fast.", "Uh, I Guess That's All I Have to Say."
8. Where Am I? What Am I Looking At?
A generalization of the lookat transformation that Blinn used in space movies. This is pretty advanced unless you've had a course in linear algebra.This chapter is also a very compact summary of what you know after you have worked with the graphics pipeline for a while.
9. The Three-Dimensional Kaleidoscope
Some playing with 3D groups to make related polyhedra and other interesting shapes. This is an interesting entry portal to the whole subject of symmetry. It goes with the Platonic Solids chapter, but can be done independently. This article encourages greater artistic experimentation and free-form design for a smaller investment of effort than the other chapters so far.
10. Fractional Invisibility
A way to remove most of the singuarites in quantitative invisibility types of hidden line algorithms, this is definitely an advanced subject. OpenGL provide a z-buffer which makes the techniques described here necessary only for special parts of computational solid geometry (CSG).
11. Optimal Tubes
A simple modelling primitive for long cylinders that takes into account the viewpoint, this is also an advanced subject. If you ever get a job designing chemical structures or space stations you may need to digest this material, although programming tools are generally available which incorporate this wisdom.
12. The Ultimate Design Tool
This is a more serious piece of advice than it might first seem. Unless a computer graphics programmer can visualize and sketch with pencil and paper there is little chance for fluency and efficiency in their work. This is essential reading.
13. Line Clipping
This is a chapter from a regular course on computer graphics. This is good example of what people do in the field of computational geometry, which is one of the abstract or technical fields behind the applied field of computer graphics.
14. Pixel Coordinates
Mapping the continuous range -1...+1 to pixel coordinate values and how it is usually done wrong.
15. Subpixelic Particles
How to map sub-pixels to regular pixels for subsampling. Chapters 14 and 15 are definitely advanced. A cursory reading will give you an idea of what happens at the very end of the pipeline, the part most computer graphics courses skip.
16. Grandpa, What Does "Viewport" Mean?
The matter treated in this chapter is at the heart of all modern windowing systems. Despite all the things "windows" systems can do, be they Apple, Microsoft, or Sun, they can't help you do anything original, like non-rectangular windowing.
17. Hyperbolic Interpolation
Discusses how to interpolate colors and texture indices onto objects viewed in perspective. This chapter is really about homogeneous coordinates, and those are at the heart of the geometry pipeline. This is definitely advanced, because it requires an understanding of matters discussed in the next chapter.
18. The Homogeneous Perspective Transform
How the perspective transform works in homogeneous coordinates.
19. Backface Culling Snags
More on drawing solids quickly. Rather more computerish than mathematical.
20. Farewell To FORTRAN
This chapter is largely out of date. It is only a part of what Jim Blinn had to say about the "language wars" back in 1994. Of course, now nobody really needs to be coaxed from FORTRAN to C++.
His books have these sort of 'GEMS' that you might use the week you get it.
Top reviews from other countries
A must for any image processing student, I would have liked to give ten stars, but - looking at the price of the book, that would not be just. The publishers have to learn a lesson - how not to deceive the customer /reader/employer.





