• 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
  • 国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)
21年品牌 40万+商家 超1.5亿件商品

国外计算机科学教材系列·交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)

14.6 1.5折 95 八五品

仅1件

云南昆明
认证卖家担保交易快速发货售后保障

作者[美]安吉尔(Angel,E.) 著

出版社电子工业出版社

出版时间2008-09

版次1

装帧平装

货号5-2

上书时间2024-04-04

云书库图书店

已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:八五品
图书标准信息
  • 作者 [美]安吉尔(Angel,E.) 著
  • 出版社 电子工业出版社
  • 出版时间 2008-09
  • 版次 1
  • ISBN 9787121072376
  • 定价 95.00元
  • 装帧 平装
  • 开本 16开
  • 纸张 胶版纸
  • 页数 828页
  • 字数 1227千字
  • 正文语种 英语
【内容简介】
  覆盖了计算机图形学基础课程中的所有主题,包括光与材质的相互作用、明暗绘制、建模、曲线和曲面、反走样、光栅化、纹理映射和图像合成等内容。
  在广泛结合OpenGL并注重图形应用编程的基础上,《交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)》向读者介绍了计算机图形学的核心概念。书中代码采用C和C++语言,并使用了自顶向下和面向编程的方法,使读者能够迅速地创建自己的三维图形。在结构安排上,《交互式计算机图形学:基于OpenGL的自顶向下方法(第5版)(英文版)》在读者学会了编写交互式图形程序之后再介绍底层的算法,如线段的绘制以及多边形填充等算法。
【作者简介】
  EdwardAngel,美国新墨西哥大学计算机科学系、电气与计算机工程系以及媒体艺术系荣誉退休教授,他曾经是该大学首位兼任教学工作的研究生。Edward获得了美国南加州大学获得哲学博士学位和加州理工学院工程理学士学位。他还是新墨西哥大学艺术、研究、技术和科学实验室的主任。
【目录】
CHAPTER1GRAPHICSSYSTEMSANDMODELS
1.1ApplicationsofComputerGraphics
1.1.1DisplayofInformation
1.1.2Design
1.1.3SimulationandAnimation
1.1.4UserInterfaces

1.2AGraphicsSystem
1.2.1PixelsandtheFrameBuffer
1.2.2OutputDevices
1.2.3InputDevices

1.3Images:PhysicalandSynthetic
1.3.1ObjectsandViewers
1.3.2LightandImages
1.3.3ImageFormationModels

1.4ImagingSystems
1.4.1ThePinholeCamera
1.4.2TheHumanVisualSystem
1.5TheSynthetic-CameraModel

1.6TheProgrammersInterface
1.6.1ThePen-PlotterModel
1.6.2Three-DimensionalAPIs
1.6.3ASequenceofImages
1.6.4TheModeling-RenderingParadigm

1.7GraphicsArchitectures
1.7.1DisplayProcessors
1.7.2PipelineArchitectures
1.7.3TheGraphicsPipeline
1.7.4VertexProcessing
1.7.5ClippingandPrimitiveAssembly
1.7.6Rasterization
1.7.7FragmentProcessing
1.8ProgrammablePipelines
1.9PerformanceCharacteristics
SummaryandNotes
SuggestedReadings
Exercises

CHAPTER2GRAPHICSPROGRAMMING
2.1TheSierpinskiGasket
2.2ProgrammingTwo-DimensionalApplications
2.2.1CoordinateSystems
2.3TheOpenGLAPI
2.3.1GraphicsFunctions
2.3.2TheGraphicsPipelineandStateMachines
2.3.3TheOpenGLInterface

2.4PrimitivesandAttributes
2.4.1PolygonBasics
2.4.2PolygonTypesinOpenGL
2,4.3Approximatin9aSphere
2.4.4Text
2.4.5CurvedObjects
2.4.6Attributes

2.5Color
2.5.1RGBColor
2.5.2IndexedColor
2.5.3SettingofColorAttributes

2.6Viewing
2.6.1TheOrthographicView
2.6.2Two-DimensionalViewing
2.6.3MatrixModes

2.7ControlFunctions
2.7.1InteractionwiththeWindowSystem
2.7.2AspectRatioandViewports
2.7.3Themain,display,andmyinitFunctions
2.7.4ProgramStructure
2.8TheGasketProgram
2.9PolygonsandRecursion

2.10TheThree.DimensionalGasket
2.1O.1UseofThreeDimensionalPoints
2.10.2UseOfPolygonsinThreeDimensions
2.10.3Hidden-SurfaceRemoval
2.11PlottingImplicitFunctions
2.11.1MarchingSquares
SummaryandNotes
SuggestedReadings
Exercises

CHAPTER3INPUTANDINTERACTION
3.1Interaction
3.2InputDevices
3.2.1PhysicalInputDevices
3.2.2LogicalDevices
3.23InputModes
3.3ClientsandServers

3.4DisplayLists
3.4.1DefinitionandExecutionofDisplayLists
3.4.2TextandDisplayLists
3.4.3FontsinGLUT
3.5DisplayListsandModeling

3.6ProgrammingEventDrivenInput
3.6.1UsingthePointingDevice
3.6.2WindowEvents
3.6.3KeyboardEvents
3.6.4TheDisplayandIdleCallbacks
3.6.SWindowManagement
3.7Menus

3.8Picking
3.8.1PickingandSelectionMode
3.9ASimpleCADProgram
3.10BuildingInteractiveModels

3.11AnimatingInteractivePrograms
3.11.1TheRotatingSquare
3.11.2DoubleBuffering
3.11.3UsingaTimer

3.12DesignofInteractivePrograms
3.12.1Toolkits.Widgets.andtheFrameBuffer
3.13LogicOperations
3.13.1DrawingErasableLines
3.13.2XORandColor
3.13.3CursorsandOverlayPlanes
SummaryandNotes
SuggestedReadings
Exercises

CHAPTER4GEOMTRICOBJECTSANDTRANSFORMATIONS
4.1Scalars,Points.andVectors
4.1.1GeometricObjects
4.1.2Coordinate.FreeGeometry
4.1.3TheMathematicalView:VectorandAffineSpaces
4.1.4TheComputerScienceView
4.1.5GeometricADTs
4.1.6Lines
4.1.7AffjneSums
4.1.8Convexity
4.1.9DotandCrossProducts
4.2Three-DimensionaIPrimitives

4.3CoordinateSystemsandFrames
4.3.1RepresentationsandN.Tuples
4.3.2ChangeofCoordinateSystems
4.3.3ExampleChangeofRepresentation
4.3.4HomogeneousCoordinates
4.3.5ExampleChangeinFrames
4.3.6WorkingwithRepresentations
4.4Framesin0penGL

4.5ModelingaColoredCube
4.5.1ModelingtheFaces
4.5.2Inward-andOutward.PointingFaces
4.5.3DataStructuresforObjectRepresentation
4.5.4TheColorCube
4.5.5BilinearInterpolation
4.5.6VertexArrays
4.6AffineTransformations
4.7Translation,Rotation-andScaling
4.7.1Translation
4.7.2Rotation
CHAPTER5VIEWING
CHAPTER6LIGHTINGANDSHADING
CHAPTER7FROMVERTICESTOFRAGMENTS
CHAPTER8DISCRETETECHNIQUES
CHAPTER9PROGRAMMABLESHADERS
点击展开 点击收起

—  没有更多了  —

以下为对购买帮助不大的评价

此功能需要访问孔网APP才能使用
暂时不用
打开孔网APP