登入帳戶  | 訂單查詢  | 購物車/收銀台(0) | 在線留言板  | 付款方式  | 運費計算  | 聯絡我們  | 幫助中心 |  加入書簽
會員登入   新用戶登記
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2024年度TOP分類瀏覽雜誌 臺灣用戶
品種:超過100萬種各類書籍/音像和精品,正品正價,放心網購,悭钱省心 服務:香港台灣澳門海外 送貨:速遞郵局服務站

新書上架簡體書 繁體書
暢銷書架簡體書 繁體書
好書推介簡體書 繁體書

三月出版:大陸書 台灣書
二月出版:大陸書 台灣書
一月出版:大陸書 台灣書
12月出版:大陸書 台灣書
11月出版:大陸書 台灣書
十月出版:大陸書 台灣書
九月出版:大陸書 台灣書
八月出版:大陸書 台灣書
七月出版:大陸書 台灣書
六月出版:大陸書 台灣書
五月出版:大陸書 台灣書
四月出版:大陸書 台灣書
三月出版:大陸書 台灣書
二月出版:大陸書 台灣書
一月出版:大陸書 台灣書

『簡體書』计算机图形学:算法与实现(大学计算机教育国外著名教材系列(影印版))

書城自編碼: 1861784
分類:簡體書→大陸圖書→教材研究生/本科/专科教材
作者: [印]穆克赫尔吉
國際書號(ISBN): 9787302274872
出版社: 清华大学出版社
出版日期: 2012-01-01
版次: 1 印次: 1
頁數/字數: 583/
書度/開本: 16开 釘裝: 平装

售價:HK$ 174.1

我要買

share:

** 我創建的書架 **
未登入.


新書推薦:
历史文本的文化间交织:中国上古历史及其欧洲书写(论衡系列)
《 历史文本的文化间交织:中国上古历史及其欧洲书写(论衡系列) 》

售價:HK$ 118.8
1688:第一次现代革命(革命不是新制度推翻旧制度,而是两条现代化道路的殊死斗争!屡获大奖,了解光荣革命可以只看这一本)
《 1688:第一次现代革命(革命不是新制度推翻旧制度,而是两条现代化道路的殊死斗争!屡获大奖,了解光荣革命可以只看这一本) 》

售價:HK$ 217.8
东方小熊日本幼儿园思维训练 听力专注力(4册)
《 东方小熊日本幼儿园思维训练 听力专注力(4册) 》

售價:HK$ 88.0
粤港澳大湾区世界重要人才中心和创新高地建设
《 粤港澳大湾区世界重要人才中心和创新高地建设 》

售價:HK$ 107.8
她们登上了太空:第一批NASA女性宇航员成长纪实
《 她们登上了太空:第一批NASA女性宇航员成长纪实 》

售價:HK$ 107.8
当代资本主义日常生活金融化研究
《 当代资本主义日常生活金融化研究 》

售價:HK$ 140.8
证明的故事:从勾股定理到现代数学
《 证明的故事:从勾股定理到现代数学 》

售價:HK$ 131.8
雀鸟与群狼的对决:扭转战局的兵棋游戏
《 雀鸟与群狼的对决:扭转战局的兵棋游戏 》

售價:HK$ 96.8

 

建議一齊購買:

+

HK$ 144.6
《具体数学:计算机科学基础(英文版第2版)》
+

HK$ 231.4
《计算机图形学(第四版)》
+

HK$ 318.0
《3D游戏引擎设计:实时计算机图形学的应用方法(第2版)》
+

HK$ 156.4
《计算机图形学——基于3D图形开发技术》
+

HK$ 203.6
《计算机图形学与几何造型导论(世界著名计算机教材精选)》
內容簡介:
《计算机图形学:算法与实现英文影印版》是在多年的教学经验基础上,从方便读者接受和理解的角度来编写的,每章先以浅显的语言介绍计算机图形学的算法,然后以丰富的示例阐述计算机图形学基本算法的C++语言实现,这不仅增加了本书趣味性,而且还使本书非常具有的实用性,很多计算机图形学的算法实现代码,读者可以直接应用到自己的编程中,真正做到计算机图形学的算法与实现完美结合,非常适合作为“计算机图形学”课程的教材。
目錄
preface xi
1 introduction to windows programming
1.1 prologue
1.2 windows operating system--the universal graphical user
interface
1.3 windows os----intepnals
1.4 windows programming
1.4.1 data type notation
1.4.2 predefined constants
1.4.3 windows programming architecture
1.4.4 creating project in visual studio
1.4.5 other ide and compiler options
1.4.6 message-driven programming
1.5 first windows program
1.5.1 implementation
1.5.2 program description
1.6 typing characters in window
1.6.1 implementation
1.6.2 program description
1.7 my first menu
1.7.1 implementation
1.7.2 program description
1.8 summary
1.9 review questions and exercises
2 two-dimensional geometric transformations 33--
2.1 prologue
2.2 tp. anslation
2.2.1 implementation
2.2.2 program description
2.3 reflection
2.3.1 implementation
2.3.2 program description
2.4 rotation
2.4.1 implementation
2.4.2 program description
2.5 scaling
2.5.1 implementation
2.5.2 program description
2.6 zooming
2.6.1 implementation
2.6.2 program description
2.7 rubber banding
2.7.1 implementation
2.7.2 program description
2.8 summary
2.9 review questions and exercises
3 line drawing algorithms
3.1 prologue
3.2 scm conversion algorithm: a simple line drawing algorithm
3.3 bresenham''s scm conversion algorithm
3.3.1 implementation
3.3.2 program description
3.4 bar chart
3.4.1 implementation
3.4.2 program description
3.5 summary
3.6 review questions and exercises
4 circle drawing algorithms
4.1 prologue
4.2 bresenham''s circle drawing algorrmm
4.2.1 implementation
4.2.2 program description
4.3 bresenham''s ellipse drawing algorithm
4.3.1 implementation
4.3.2 program description
4.4 arc
4.4.1 implementation
4.4.2 program description
4.5 pie chart
4.5.1 implementation
4.5.2 program description
4.6 projected pie implementation
4.6.1 program description
4.7 summary
4.8 review questions and exercises
5 drawing curves
5.1 prologue
5.2 b-spline curve
5.2.1 implementation
5.2.2 program description
5.3 bezier curve
5.3.1 implementation
5.3.2 program description
5.4 summary
5.5 review questions arm exercises
6 filling algorithms
6.1 prologue
6.2 seed fill algorithm
6.2.1 implementation
6.2.2 program description
6.3 scan line polygon fill algorithm
6.3.1 implementation
6.3.2 program description
6.4 summary
6.5 review questions and exercises
7 clipping algorithms
7.1 prologue
7.2 viewport clipping
7.2.1 implementation
7.2.2 program description
7.3 mnpoint subdivision line clipping
7.3.1 implementation
7.3.2 program description
7.4 sutherland-cohen line clipping
7.4.1 implementation
7.4.2 program description
7.5 summary
7.6 review questions ant exercises
8 three-dimensional graphics
8.1 prologue
8.2 3d coordinate system
8.3 displaying 3d objects
8.4 3d transformations
8.4.1 3d translation
8.4.2 3d rotation
8.4.3 3d scaling
8.5 3d object to 2d image projection
8.5.1 worm coordinate to 3d viewpoint-based coordinate
transformation
8.5.2 viewpoint-based coordinate system to 2d image
transformation
8.6 displaying cube in 2d screen
8.6.1 implementation
8.6.2 program description
8.7 displaying sphere in 2d screen
8.7.1 implementation
8.7.2 program description
8.8 viewing transformations
8.9 implementation of other geometric shapes
8.9.1 implementation
8.9.2 program description
8.10 summary
8.11 review questions and exercises
9 hidden surface removal
9.1 prologue
9.2 z-buffer
9.3 z-buffer algorithm for cube
9.3.1 implementation
9.3.2 program description
9.4 z-buffer algorithm for sphere
9.4.1 implementation
9.4.2 program description
9.5 ray tracing
9.6 ray tracing algorithm for cube
9.6.1 implementation
9.6.2 program description
9.7 ray tracing algorithm for sphere
9.7.1 implementation
9.7.2 program description
9.8 summary
9.9 review questions and exercises
10 illumination and shading
10.1 prologue
10.2 illumination
10.3 modelling a shiny surface
10.3.1 phong illumination model
10.4 phong illumination for cube
10.4.1 implementation
10.5 phong illumination for sphere
10.5.1 implementation
10.5.2 program description
10.6 summary
10.7 review questions and exercises
suggested further reading
index

 

 

書城介紹  | 合作申請 | 索要書目  | 新手入門 | 聯絡方式  | 幫助中心 | 找書說明  | 送貨方式 | 付款方式 香港用户  | 台灣用户 | 海外用户
megBook.com.hk
Copyright © 2013 - 2025 (香港)大書城有限公司  All Rights Reserved.