分享
 
 
 

交互式计算机图形学——自顶向下方法与Open GL应用(第3版 影印版)(附光盘)

交互式计算机图形学——自顶向下方法与Open GL应用(第3版  影印版)(附光盘)  点此进入淘宝搜索页搜索
  特别声明:本站仅为商品信息简介,并不出售商品,您可点击文中链接进入淘宝网搜索页搜索该商品,有任何问题请与具体淘宝商家联系。
  參考價格: 点此进入淘宝搜索页搜索
  分類: 图书,计算机/网络,图形图像 多媒体,其他,

作者: (美)安杰尔(Angel,E.)著

出 版 社: 高等教育出版社

出版时间: 2003-10-1字数: 900000版次: 1页数: 719印刷时间: 2005/06/01开本: 16开印次: 2纸张: 胶版纸I S B N : 9787040137248包装: 平装编辑推荐

本套教学用书的特点:

权威性——教育部高等教育司推荐、教育部高等学校信息科学与技术引进教材专家组遴选。

系统性——覆盖计算机专业主干课程和非计算机专业计算机基础课程;

先进性——著名计算机专家近两年的最新著作,内容体系先进;

经济性——价格与国内自编教材相当,是国内引进教材价格最低的。

This is third edition of this widely adopted textbook.It gets beginners creating exciting interactive graphics applications quickly using OpenGL,the most widely used 3D graphics API in the industry,and provides a solid background for future work in computer graphics,The book covers all topics required for a fundamental course in computer graphics,such as light-material interactions,shading,modeling,curves and surfaces,antialiasing,texture mapping,and compositing,as well as hardware issues.

This edition includes an expanded breadth and depth of material to account for new developments in the field,including new material on image processing,texture mapping,multirendering,image-based rendering,and parallel rendering,as well as more material on interaction using selection mode,smooth animations,object-oriented graphics and scene graphics,and ray tracing and radiosity.

Included is a CD-ROM with OpenGL resources and book supplements.

内容简介

本书向读者讲授如何用OpenGL从初级阶段快速制作优质的交互式计算机图形实例,OpenGL是业界广泛采用的三维图形API,本书藉此向读者提供了在计算机图形学领域更广阔空间内发展的坚实基础。书中内容覆盖了计算机图形学基础课程所需的所有论题,如光景交互作用、图形明暗处理、图形建模、曲线与曲面、偏差预防、纹理映射和图形组合,还探讨了计算机硬件方面的问题。

本版为配合计算机图形学领域最新进展,增加了更具广度和深度的内容,包括图像处理、多重透视、并行透视等,并运用选择模式、仿真模拟、面向对象图形学与实景图像、射线跟踪等方法讲解了图形交互的内容。随书所附光盘包括OpenGL指令集参考、OpenGL手册、书中源码代码和附加的实用案例。

本书适用于高等院校本科高年级和研究生的计算机图形学、交互式计算机系统等课程。

作者简介

Edward Angel is currently a professor of Commputer Sicience,Electrical and Computer Engineering and Media Arts at the university of new mexico.He was recently named the Director of the Art tech Center at UNM in the College of Fine Arts.Professor Angel received his Ph.D.in electrical engineering from the university of Southern California in 1968 and has since held visiting positions in Sweden,India,and England.his present research interests focus on computer graphics and scientific visualization.

目录

Preface

Chapter 1 Graphics Systems and Models

1.1 Applications of Computer Graphics

1.1.1 Display of Information

1.1.2 Design

1.1.3 Simulation and Animation

1.1.4 User Interfaces

1.2 A Graphics System

1.2.1 Pixels and the Frame Buffer

1.2.2 Output Devices

1.2.3 Input Devices

1.3 Images: Physical and Synthetic

1.3.1 Objects and Viewers

1.3.2 Light and Images

1.3.3 Ray Tracing

1.4 The Human Visual System

1.5 The Pinhole Camera

1.6 The Synthetic-Camera Model

1.7 The Programmer's Interface

1.7.1 Application Programmer's Interfaces

1.7.2 The Pen-Plotter Model

1.7.3 Three-Dimensional APIs

1.7.4 A Sequence of Images

1.7.5 The Modeling-Rendering Paradigm

1.8 Graphics Architectures

1.8.1 Display Processors

1.8.2 Pipeline Architectures

1.8.3 Transformations

1.8.4 Clipping

1.8.5 Projection

1.8.6 Rasterization

1.8.7 Performance Characteristics

1.9 Summary and Notes

1.10 Suggested Readings

Exercises

Chapter 2 Graphics Programming

2.1 The Sierpinski Gasket

2.2 Programming Two-Dimensional Applications

2.2.1 Coordinate Systems

2.3 The OpenGL API

2.3.1 Graphics Functions

2.3.2 The Graphics Pipeline and State Machines

2.3.3 The OpenGL Interface

2.4 Primitives and Attributes

2.4.1 Polygon Basics

2.4.2 Polygon Types in OpenGL

2.4.3 Drawing a Sphere

2.4.4 Text

2.4.5 Curved Objects

2.4.6 Attributes

2.5 Color

2.5.1 RGB Color

2.5.2 Indexed Color

2.5.3 Setting of Color Attributes

2.6 Viewing

2.6.1 Two-Dimensional Viewing

2.6.2 The Orthographic View

2.6.3 Matrix Modes

2.7 Control Functions

2.7.1 Interaction with the Window System

2.7.2 Aspect Ratio and Viewports

2.7.3 The main, display, and myinit Functions

2.7.4 Program Structure

2.8 The Gasket Program

2.9 Polygons and Recursion

2.10 The Three-Dimensional Gasket

2.10.1 Use of Three-Dimensional Points

2.10.2 Use of Polygons in Three Dimensions

2.10.3 Hidden-Surface Removal

2.11 Summary and Notes

2.12 Suggested Readings

Exercises

Chapter 3 Input and Interaction

3.1 Interaction

3.2 Input Devices

3.2.1 Physical Input Devices

3.2.2 Logical Devices

3.2.3 Measure and Trigger

3.2.4 Input Modes

3.3 Clients and Servers

3.4 Display Lists

3.4.1 Definition and Execution of Display Lists

3.4.2 Text and Display Lists

3.4.3 Fonts in GLUT

3.5 Programming Event-Driven Input

3.5.1 Using the Pointing Device

3.5.2 Window Events

3.5.3 Keyboard Events

3.5.4 The Display and Idle Callbacks

3.5.5 Window Management

3.6 Menus

3.7 Picking

3.7.1 Picking and Selection Mode

3.8 A Simple Paint Program

3.9 Animating Interactive Programs

3.9.1 The Rotating Square

3.9.2 Double Buffering

3.9.3 Other Buffering Problems

3.10 Design of Interactive Programs

3.10.1 Toolkits, Widgets, and the Frame Buffer

3.11 Logic Operations

3.11.1 Drawing Erasable Lines

3.11.2 XOR and Color

3.11.3 Cursors and Overlay Planes

3.12 Summary and Notes

3.13 Suggested Readings

Exercises

Chapter 4 Geometric Objects and Transformations

Chapter 5 Viewing

Chapter 6 Shading

Chapter 7 Discrete Techniques

Chapter 8 Implementation of a Renderer

Chapter 9 Hierarchical and Object-Oriented Modeling

Chapter 10 Curves and Surfaces

Chapter 11 Procedural Methods

Chapter 12 Visualization

Chapter 13 Advanced Rendering

Appendix A Sample Programs

Appendix B Spaces

Appendix C Matrices

References

Function Index

Subject Index

交互式计算机图形学——自顶向下方法与Open GL应用(第3版  影印版)(附光盘)

 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
>>返回首頁<<
 
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有