交互式計算機圖形學

出版時間:2008-9  出版社:安吉爾 (Edward Angel) 電子工業(yè)出版社 (2008-09出版)  作者:安吉爾  頁數(shù):828  
Tag標簽:無  

前言

Tthis book is an introduction to computer graphics, with an emphasis on appli-cations vrogramming. In the first edition, which was published in 1997, I notedthat in the seven years since my previous graphics text, me nelo nan expenenceo enor-mous growthma rate of growth that exceeded most people's expectations, includingmy own. In the 11 years (and four editions) since, we have seen even more changes.Feature-length computer-animated movies have proved to be commercial and artis-tic successes. The use of computer effects in movies is standard, and it is often almostimpossible to distinguish live action from computer-generated effects. Recent hard-ware has blurred the distinction between computers and game boxes. Programmablegraphics processors provide a level of flexibility in commodity systems that was notavailable in even the most expensive workstations just a few years ago.Not only have graphics capabilities increased, but costs have been reduced forboth high- and low-end workstations. Within the last few years, the cost of a graph-ics system that can generate over 100 million three-dimensional polygons per secondwith lighting and texture mapping has gone from over $100,000 to less than $1000.The availability of commodity graphics boards for personal computers has been espe-cially significant. These boards provide support for sophisticated three-dimensionalapplications, starting at about $100. On the software side, OpenGL remains the stan-dard programmer's interface both for writing application programs and developinghigh-level products for muhiplatform applications. OpenGL supports applicationsranin from hrge scientific visualizations to cell phone games.A Top-Down ApproachThese recent advances and the success of the first four editions continue to reinforcemy belief in a top-down, programming-oriented approach to introductory computergraphics. Although many computer science and engineering departments now sup-port more than one course in the subject, most students will take only a single course.Such a course is placed in the curriculum after students have already studied pro-gramming, data structures, algorithms, software engineering, and basic mathematics.A class in computer graphics allows the instructor to build on these topics in a waythat can be both informative and fun. I want these students to be programming three-dimensional applications as soon as possible. Low-level algorithms, such as those thatdraw lines or fill polygons, can be dealt with later, after students are creating graphics.

內(nèi)容概要

  覆蓋了計算機圖形學基礎課程中的所有主題,包括光與材質(zhì)的相互作用、明暗繪制、建模、曲線和曲面、反走樣、光柵化、紋理映射和圖像合成等內(nèi)容?! ≡趶V泛結(jié)合OpenGL并注重圖形應用編程的基礎上,《交互式計算機圖形學:基于OpenGL的自頂向下方法(第5版)(英文版)》向讀者介紹了計算機圖形學的核心概念。書中代碼采用C和C++語言,并使用了自頂向下和面向編程的方法,使讀者能夠迅速地創(chuàng)建自己的三維圖形。在結(jié)構(gòu)安排上,《交互式計算機圖形學:基于OpenGL的自頂向下方法(第5版)(英文版)》在讀者學會了編寫交互式圖形程序之后再介紹底層的算法,如線段的繪制以及多邊形填充等算法。

作者簡介

作者:(美國)安吉爾 (Edward Angel)

書籍目錄

CHAPTER1 GRAPHICS SYSTEMS AND MODELS1.1 Applications of Computer Graphics1.1.1 Display of Information 1.1.2 Design1.1.3 Simulation and Animation 1.1.4 User Interfaces 1.2 A Graphics System1.2.1 Pixels and the Frame Buffer1.2.2 Output Devices 1.2.3 Input Devices 1.3 Images: Physical and Synthetic1.3.1 Objects and Viewers1.3.2 Light and Images 1.3.3 Image Formation Models1.4 Imaging Systems1.4.1 The Pinhole Camera 1.4.2 The Human Visual System 1.5 The Synthetic-Camera Model1.6 The Programmer's Interface1.6.1 The Pen-Plotter Model 1.6.2 Three-Dimensional APIs 1.6.3 A Sequence of Images 1.6.4 The Modeling-Rendering Paradigm 1.7 Graphics Architectures1.7.1 Display Processors 1.7.2 Pipeline Architectures 1.7.3 The Graphics Pipeline 1.7.4 Vertex Processing  1.7.5 Clipping and Primitive Assembly1.7.6 Rasterization 1.7.7 Fragment Processing1.8 Programmable Pipelines1.9 Performance CharacteristicsSummary and NotesSuggested ReadingsExercises CHAPTER2 GRAPHICS PROGRAMMING2.1 The Sierpinski Gasket2.2 Programming Two-Dimensional Applications2.2.1 Coordinate Systems2.3 The OpenGL API2.3.1 Graphics Functions 2.3.2 The Graphics Pipeline and State Machines2.3.3 The OpenGL Interface  2.4 Primitives and Attributes2.4.1 Polygon Basics 2.4.2 Polygon Types in OpenGL2,4.3 Approximatin9 a Sphere 2.4.4 Text2.4.5 Curved Objects2.4.6 Attributes 2.5 Color2.5.1 RGB Color 2.5.2 Indexed Color 2.5.3 Setting of Color Attributes 2.6 Viewing2.6.1 The Orthographic View 2.6.2 Two-Dimensional Viewing 2.6.3 Matrix Modes 2.7 Control Functions2.7.1 Interaction with the Window System2.7.2 Aspect Ratio and Viewports 2.7.3 The main, display, and myinit Functions 2.7.4 Program Structure 2.8 The Gasket Program2.9 Polygons and Recursion 2.10 The Three.Dimensional Gasket2.1O.1 Use of Three Dimensional Points2.10.2 Use Of Polygons in Three Dimensions 2.10.3 Hidden-Surface Removal 2.11 Plotting Implicit Functions2.11.1 Marching Squares Summary and Notes Suggested Readings Exercises CHAPTER3 INPUT AND INTERACTION3.1 Interaction3.2 Input Devices3.2.1 Physical Input Devices 3.2.2 Logical Devices 3.2 3 Input Modes 3.3 Clients and Servers3.4 Display Lists3.4.1 Definition and Execution of Display Lists 3.4.2 Text and Display Lists3.4.3 Fonts in GLUT 3.5 Display Lists and Modeling3.6 Programming Event Driven Input3.6.1 Using the Pointing Device3.6.2 Window Events 3.6.3 Keyboard Events 3.6.4 The Display and Idle Callbacks 3.6.S Window Management 3.7 Menus3.8 Picking3.8.1 Picking and Selection Mode 3.9 A Simple CAD Program3.10 Building Interactive Models3.11 Animating Interactive Programs3.11.1 The Rotating Square3.11.2 Double Buffering 3.11.3 Using a Timer 3.12 Design of Interactive Programs3.12.1 Toolkits.Widgets.and the Frame Buffer3.13 Logic Operations3.13.1 Drawing Erasable Lines 3.13.2 XOR and Color 3.13.3 Cursors and Overlay Planes Summary and Notes Suggested Readings Exercises CHAPTER4 GEOMTRIC OBJECTS AND TRANSFORMATIONS  4.1 Scalars,Points.and Vectors4.1.1 Geometric Objects 4.1.2 Coordinate.Free Geometry 4.1.3 The Mathematical View:Vector and Affine Spaces4.1.4 The Computer Science View 4.1.5 GeometricADTs 4.1.6 Lines 4.1.7 Affjne Sums 4.1.8 Convexity 4.1.9 Dot and Cross Products4.2 Three-DimensionaI Primitives4.3 Coordinate Systems and Frames4.3.1 Representations and N.Tuples4.3.2 Change of Coordinate Systems 4.3.3 Example Change of Representation4.3.4 Homogeneous Coordinates 4.3.5 Example Change in Frames 4.3.6 Working with Representations 4.4 Frames in 0penGL4.5 Modeling a Colored Cube4.5.1 Modeling the Faces 4.5.2 Inward-and Outward.Pointing Faces 4.5.3 Data Structures for Object Representation4.5.4 The Color Cube 4.5.5 Bilinear Interpolation4.5.6 Vertex Arrays4.6 Affine Transformations4.7 Translation,Rotation-and Scaling4.7.1 Translation 4.7.2 RotationCHAPTER 5 VIEWINGCHAPTER 6 LIGHTING AND SHADINGCHAPTER 7 FROM VERTICES TO FRAGMENTSCHAPTER 8 DISCRETE TECHNIQUESCHAPTER 9 PROGRAMMABLE SHADERS

章節(jié)摘錄

插圖:

編輯推薦

《交互式計算機圖形學:基于OpenGL的自頂向下方法(第5版)(英文版)》可作為計算機及相關(guān)專業(yè)本科生和研究生的計算機圖形學教材,也適合作為相關(guān)程序員、工程技術(shù)人員及科研人員的參考書。

圖書封面

圖書標簽Tags

評論、評分、閱讀與下載


    交互式計算機圖形學 PDF格式下載


用戶評論 (總計5條)

 
 

  •   這本書確實深入淺出,但對于不是做圖形學方向的人來說,實在是太辛苦了!里面的術(shù)語之類的,讓我這個計算機專業(yè)的人看起來都非常頭疼哦!但是書的內(nèi)容只要硬頭皮干下去了,絕對受益匪淺!
  •   在沒有大量編程經(jīng)驗的情況下,只靠目前市面上的書有些困難,不過從這本書里,還是可以了解OpenGL的功能與內(nèi)容。OpenGL的學習要一定的編程基礎,另外就是多看程序,不懂得地方查書,這也就是這本書的妙用了!
  •   感覺發(fā)給我的書有點舊,不過不是用過的那種舊,感覺像是在壓在倉庫里的最后一本一樣
  •   紙張不行,其他還可以,內(nèi)容本來就不錯
  •   印刷質(zhì)量太差了,浪費一本好書。唉!書內(nèi)容還是很好的
 

250萬本中文圖書簡介、評論、評分,PDF格式免費下載。 第一圖書網(wǎng) 手機版

京ICP備13047387號-7