59,95 €
59,95 €
inkl. MwSt.
Sofort per Download lieferbar
30 °P sammeln
59,95 €
Als Download kaufen
59,95 €
inkl. MwSt.
Sofort per Download lieferbar
30 °P sammeln
Jetzt verschenken
Alle Infos zum eBook verschenken
59,95 €
inkl. MwSt.
Sofort per Download lieferbar
Alle Infos zum eBook verschenken
30 °P sammeln
- Format: PDF
- Merkliste
- Auf die Merkliste
- Bewerten Bewerten
- Teilen
- Produkt teilen
- Produkterinnerung
- Produkterinnerung
Bitte loggen Sie sich zunächst in Ihr Kundenkonto ein oder registrieren Sie sich bei
bücher.de, um das eBook-Abo tolino select nutzen zu können.
Hier können Sie sich einloggen
Hier können Sie sich einloggen
Sie sind bereits eingeloggt. Klicken Sie auf 2. tolino select Abo, um fortzufahren.
Bitte loggen Sie sich zunächst in Ihr Kundenkonto ein oder registrieren Sie sich bei bücher.de, um das eBook-Abo tolino select nutzen zu können.
Developing Graphics Frameworks with Java and OpenGL shows you how to create software for rendering complete three-dimensional scenes. The authors explain the foundational theoretical concepts as well as the practical programming techniques that will enable you to create your own animated and interactive computer-generated worlds.
- Geräte: PC
- ohne Kopierschutz
- eBook Hilfe
- Größe: 11.92MB
Andere Kunden interessierten sich auch für
- Lee StemkoskiDeveloping Graphics Frameworks with Java and OpenGL (eBook, ePUB)59,95 €
- Ronald GoldmanDual Quaternions and Their Associated Clifford Algebras (eBook, PDF)52,95 €
- Theresa-Marie RhyneApplying Color Theory to Digital Media and Visualization (eBook, PDF)59,95 €
- Yu-Jin ZhangA Selection of Image Analysis Techniques (eBook, PDF)47,95 €
- John M. BlainBlender 2D Animation (eBook, PDF)61,95 €
- Eihab B. M. BashierPractical Numerical and Scientific Computing with MATLAB® and Python (eBook, PDF)87,95 €
- Jessen HavillDiscovering Computer Science (eBook, PDF)79,95 €
-
-
-
Developing Graphics Frameworks with Java and OpenGL shows you how to create software for rendering complete three-dimensional scenes. The authors explain the foundational theoretical concepts as well as the practical programming techniques that will enable you to create your own animated and interactive computer-generated worlds.
Dieser Download kann aus rechtlichen Gründen nur mit Rechnungsadresse in A, B, BG, CY, CZ, D, DK, EW, E, FIN, F, GR, HR, H, IRL, I, LT, L, LR, M, NL, PL, P, R, S, SLO, SK ausgeliefert werden.
Produktdetails
- Produktdetails
- Verlag: Taylor & Francis
- Seitenzahl: 308
- Erscheinungstermin: 22. Juni 2022
- Englisch
- ISBN-13: 9781000582079
- Artikelnr.: 63955392
- Verlag: Taylor & Francis
- Seitenzahl: 308
- Erscheinungstermin: 22. Juni 2022
- Englisch
- ISBN-13: 9781000582079
- Artikelnr.: 63955392
- Herstellerkennzeichnung Die Herstellerinformationen sind derzeit nicht verfügbar.
Lee Stemkoski is a professor of mathematics and computer science. He earned his Ph.D. in mathematics from Dartmouth College in 2006 and has been teaching at the college level since. His specialties are computer graphics, video game development, and virtual and augmented reality programming.
James Cona is an up and coming software engineer who studied computer science at Adelphi University. Some of his specific interests include music, video game programming, 3D graphics, artificial intelligence, and clear and efficient software development in general.
James Cona is an up and coming software engineer who studied computer science at Adelphi University. Some of his specific interests include music, video game programming, 3D graphics, artificial intelligence, and clear and efficient software development in general.
About the Authors
1. Introduction to Computer Graphics
1.1 Core Concepts and Vocabulary
1.2 The Graphics Pipeline
1.2.1 Application Stage
1.2.2 Geometry Processing
1.2.3 Rasterization
1.2.4 Pixel Processing
1.3 Setting up a Development Environment
1.4 Summary and Next Steps
2. Introduction to LWJGL and OpenGL
2.1 Creating Windows with LWJGL
2.2 Drawing a Point
2.2.1 OpenGL Shading Language
2.2.2 Compiling GPU Programs
2.2.3 Rendering in the Application
2.3 Drawing Shapes
2.3.1 Using Vertex Buffers
2.3.2 An Attribute Class
2.3.3 Hexagons, Triangles and Squares
2.3.4 Passing Data Between Shaders
2.4 Working with Uniform Data
2.4.1 Introduction to Uniforms
2.4.2 A Uniform Class
2.4.3 Applications and Animations
2.5 Adding Interactivity
2.5.1 Keyboard Input with LWJGL
2.5.2 Incorporating with Graphics Programs
2.6 Summary and Next Steps
3. Matrix Algebra and Transformations
3.1 Introduction to Vectors and Matrices
3.1.1 Vector Definitions and Operations
3.1.2 Linear Transformations and Matrices
3.1.3 Vectors and Matrices in Higher Dimensions
3.2 Geometric Transformations
3.2.1 Scaling
3.2.2 Rotation
3.2.3 Translation
3.2.4 Projections
3.2.5 Local Transformations
3.3 A Matrix Class
3.4 Incorporating with Graphics Programs
3.5 Summary and Next Steps
4. A Scene Graph Framework
4.1 Overview of Class Structure
4.2 3D Objects
4.2.1 Scene and Group
4.2.2 Camera
4.2.3 Mesh
4.3 Geometry objects
4.3.1 Rectangles
4.3.2 Boxes
4.3.3 Polygons
4.3.4 Parametric Surfaces and Planes
4.3.5 Spheres and Related Surfaces
4.3.6 Cylinders and Related Surfaces
4.4 Material objects
4.4.1 Base Class
4.4.2 Basic Materials
4.5 Rendering Scenes
4.6 Custom Geometry and Material Objects
4.7 Extra Components
4.7.1 Axes and Grids
4.7.2 Movement Rig
4.8 Summary and Next Steps
5. Textures
5.1 A Texture Class
5.2 Texture Coordinates
5.2.1 Rectangles
5.2.2 Boxes
5.2.3 Polygons
5.2.4 Parametric Surfaces
5.3 Using Textures in Shaders
5.4 Rendering Scenes with Textures
5.5 Animated Effects with Custom Shaders
5.6 Procedurally Generated Textures
5.7 Using Text in Scenes
5.7.1 Billboarding
5.7.2 Heads-Up Displays and Orthogonal Cameras
5.8 Rendering Scenes to Textures
5.9 Post-Processing
5.10 Summary and Next Steps
6. Light and Shadow
6.1 Introduction to Lighting
6.2 Light Classes
6.3 Normal Vectors
6.3.1 Rectangles
6.3.2 Boxes
6.3.3 Polygons
6.3.4 Parametric Surfaces
6.4 Using Lights in Shaders
6.4.1 Structs and Uniforms
6.4.2 Light-Based Materials
6.5 Rendering Scenes with Lights
6.6 Extra Components
6.7 Bump Mapping
6.8 Bloom and Glow Effects
6.9 Shadows
6.9.1 Theoretical Background
6.9.2 Adding Shadows to the Framework
6.10 Summary and Next Steps
Index
1. Introduction to Computer Graphics
1.1 Core Concepts and Vocabulary
1.2 The Graphics Pipeline
1.2.1 Application Stage
1.2.2 Geometry Processing
1.2.3 Rasterization
1.2.4 Pixel Processing
1.3 Setting up a Development Environment
1.4 Summary and Next Steps
2. Introduction to LWJGL and OpenGL
2.1 Creating Windows with LWJGL
2.2 Drawing a Point
2.2.1 OpenGL Shading Language
2.2.2 Compiling GPU Programs
2.2.3 Rendering in the Application
2.3 Drawing Shapes
2.3.1 Using Vertex Buffers
2.3.2 An Attribute Class
2.3.3 Hexagons, Triangles and Squares
2.3.4 Passing Data Between Shaders
2.4 Working with Uniform Data
2.4.1 Introduction to Uniforms
2.4.2 A Uniform Class
2.4.3 Applications and Animations
2.5 Adding Interactivity
2.5.1 Keyboard Input with LWJGL
2.5.2 Incorporating with Graphics Programs
2.6 Summary and Next Steps
3. Matrix Algebra and Transformations
3.1 Introduction to Vectors and Matrices
3.1.1 Vector Definitions and Operations
3.1.2 Linear Transformations and Matrices
3.1.3 Vectors and Matrices in Higher Dimensions
3.2 Geometric Transformations
3.2.1 Scaling
3.2.2 Rotation
3.2.3 Translation
3.2.4 Projections
3.2.5 Local Transformations
3.3 A Matrix Class
3.4 Incorporating with Graphics Programs
3.5 Summary and Next Steps
4. A Scene Graph Framework
4.1 Overview of Class Structure
4.2 3D Objects
4.2.1 Scene and Group
4.2.2 Camera
4.2.3 Mesh
4.3 Geometry objects
4.3.1 Rectangles
4.3.2 Boxes
4.3.3 Polygons
4.3.4 Parametric Surfaces and Planes
4.3.5 Spheres and Related Surfaces
4.3.6 Cylinders and Related Surfaces
4.4 Material objects
4.4.1 Base Class
4.4.2 Basic Materials
4.5 Rendering Scenes
4.6 Custom Geometry and Material Objects
4.7 Extra Components
4.7.1 Axes and Grids
4.7.2 Movement Rig
4.8 Summary and Next Steps
5. Textures
5.1 A Texture Class
5.2 Texture Coordinates
5.2.1 Rectangles
5.2.2 Boxes
5.2.3 Polygons
5.2.4 Parametric Surfaces
5.3 Using Textures in Shaders
5.4 Rendering Scenes with Textures
5.5 Animated Effects with Custom Shaders
5.6 Procedurally Generated Textures
5.7 Using Text in Scenes
5.7.1 Billboarding
5.7.2 Heads-Up Displays and Orthogonal Cameras
5.8 Rendering Scenes to Textures
5.9 Post-Processing
5.10 Summary and Next Steps
6. Light and Shadow
6.1 Introduction to Lighting
6.2 Light Classes
6.3 Normal Vectors
6.3.1 Rectangles
6.3.2 Boxes
6.3.3 Polygons
6.3.4 Parametric Surfaces
6.4 Using Lights in Shaders
6.4.1 Structs and Uniforms
6.4.2 Light-Based Materials
6.5 Rendering Scenes with Lights
6.6 Extra Components
6.7 Bump Mapping
6.8 Bloom and Glow Effects
6.9 Shadows
6.9.1 Theoretical Background
6.9.2 Adding Shadows to the Framework
6.10 Summary and Next Steps
Index
About the Authors
1. Introduction to Computer Graphics
1.1 Core Concepts and Vocabulary
1.2 The Graphics Pipeline
1.2.1 Application Stage
1.2.2 Geometry Processing
1.2.3 Rasterization
1.2.4 Pixel Processing
1.3 Setting up a Development Environment
1.4 Summary and Next Steps
2. Introduction to LWJGL and OpenGL
2.1 Creating Windows with LWJGL
2.2 Drawing a Point
2.2.1 OpenGL Shading Language
2.2.2 Compiling GPU Programs
2.2.3 Rendering in the Application
2.3 Drawing Shapes
2.3.1 Using Vertex Buffers
2.3.2 An Attribute Class
2.3.3 Hexagons, Triangles and Squares
2.3.4 Passing Data Between Shaders
2.4 Working with Uniform Data
2.4.1 Introduction to Uniforms
2.4.2 A Uniform Class
2.4.3 Applications and Animations
2.5 Adding Interactivity
2.5.1 Keyboard Input with LWJGL
2.5.2 Incorporating with Graphics Programs
2.6 Summary and Next Steps
3. Matrix Algebra and Transformations
3.1 Introduction to Vectors and Matrices
3.1.1 Vector Definitions and Operations
3.1.2 Linear Transformations and Matrices
3.1.3 Vectors and Matrices in Higher Dimensions
3.2 Geometric Transformations
3.2.1 Scaling
3.2.2 Rotation
3.2.3 Translation
3.2.4 Projections
3.2.5 Local Transformations
3.3 A Matrix Class
3.4 Incorporating with Graphics Programs
3.5 Summary and Next Steps
4. A Scene Graph Framework
4.1 Overview of Class Structure
4.2 3D Objects
4.2.1 Scene and Group
4.2.2 Camera
4.2.3 Mesh
4.3 Geometry objects
4.3.1 Rectangles
4.3.2 Boxes
4.3.3 Polygons
4.3.4 Parametric Surfaces and Planes
4.3.5 Spheres and Related Surfaces
4.3.6 Cylinders and Related Surfaces
4.4 Material objects
4.4.1 Base Class
4.4.2 Basic Materials
4.5 Rendering Scenes
4.6 Custom Geometry and Material Objects
4.7 Extra Components
4.7.1 Axes and Grids
4.7.2 Movement Rig
4.8 Summary and Next Steps
5. Textures
5.1 A Texture Class
5.2 Texture Coordinates
5.2.1 Rectangles
5.2.2 Boxes
5.2.3 Polygons
5.2.4 Parametric Surfaces
5.3 Using Textures in Shaders
5.4 Rendering Scenes with Textures
5.5 Animated Effects with Custom Shaders
5.6 Procedurally Generated Textures
5.7 Using Text in Scenes
5.7.1 Billboarding
5.7.2 Heads-Up Displays and Orthogonal Cameras
5.8 Rendering Scenes to Textures
5.9 Post-Processing
5.10 Summary and Next Steps
6. Light and Shadow
6.1 Introduction to Lighting
6.2 Light Classes
6.3 Normal Vectors
6.3.1 Rectangles
6.3.2 Boxes
6.3.3 Polygons
6.3.4 Parametric Surfaces
6.4 Using Lights in Shaders
6.4.1 Structs and Uniforms
6.4.2 Light-Based Materials
6.5 Rendering Scenes with Lights
6.6 Extra Components
6.7 Bump Mapping
6.8 Bloom and Glow Effects
6.9 Shadows
6.9.1 Theoretical Background
6.9.2 Adding Shadows to the Framework
6.10 Summary and Next Steps
Index
1. Introduction to Computer Graphics
1.1 Core Concepts and Vocabulary
1.2 The Graphics Pipeline
1.2.1 Application Stage
1.2.2 Geometry Processing
1.2.3 Rasterization
1.2.4 Pixel Processing
1.3 Setting up a Development Environment
1.4 Summary and Next Steps
2. Introduction to LWJGL and OpenGL
2.1 Creating Windows with LWJGL
2.2 Drawing a Point
2.2.1 OpenGL Shading Language
2.2.2 Compiling GPU Programs
2.2.3 Rendering in the Application
2.3 Drawing Shapes
2.3.1 Using Vertex Buffers
2.3.2 An Attribute Class
2.3.3 Hexagons, Triangles and Squares
2.3.4 Passing Data Between Shaders
2.4 Working with Uniform Data
2.4.1 Introduction to Uniforms
2.4.2 A Uniform Class
2.4.3 Applications and Animations
2.5 Adding Interactivity
2.5.1 Keyboard Input with LWJGL
2.5.2 Incorporating with Graphics Programs
2.6 Summary and Next Steps
3. Matrix Algebra and Transformations
3.1 Introduction to Vectors and Matrices
3.1.1 Vector Definitions and Operations
3.1.2 Linear Transformations and Matrices
3.1.3 Vectors and Matrices in Higher Dimensions
3.2 Geometric Transformations
3.2.1 Scaling
3.2.2 Rotation
3.2.3 Translation
3.2.4 Projections
3.2.5 Local Transformations
3.3 A Matrix Class
3.4 Incorporating with Graphics Programs
3.5 Summary and Next Steps
4. A Scene Graph Framework
4.1 Overview of Class Structure
4.2 3D Objects
4.2.1 Scene and Group
4.2.2 Camera
4.2.3 Mesh
4.3 Geometry objects
4.3.1 Rectangles
4.3.2 Boxes
4.3.3 Polygons
4.3.4 Parametric Surfaces and Planes
4.3.5 Spheres and Related Surfaces
4.3.6 Cylinders and Related Surfaces
4.4 Material objects
4.4.1 Base Class
4.4.2 Basic Materials
4.5 Rendering Scenes
4.6 Custom Geometry and Material Objects
4.7 Extra Components
4.7.1 Axes and Grids
4.7.2 Movement Rig
4.8 Summary and Next Steps
5. Textures
5.1 A Texture Class
5.2 Texture Coordinates
5.2.1 Rectangles
5.2.2 Boxes
5.2.3 Polygons
5.2.4 Parametric Surfaces
5.3 Using Textures in Shaders
5.4 Rendering Scenes with Textures
5.5 Animated Effects with Custom Shaders
5.6 Procedurally Generated Textures
5.7 Using Text in Scenes
5.7.1 Billboarding
5.7.2 Heads-Up Displays and Orthogonal Cameras
5.8 Rendering Scenes to Textures
5.9 Post-Processing
5.10 Summary and Next Steps
6. Light and Shadow
6.1 Introduction to Lighting
6.2 Light Classes
6.3 Normal Vectors
6.3.1 Rectangles
6.3.2 Boxes
6.3.3 Polygons
6.3.4 Parametric Surfaces
6.4 Using Lights in Shaders
6.4.1 Structs and Uniforms
6.4.2 Light-Based Materials
6.5 Rendering Scenes with Lights
6.6 Extra Components
6.7 Bump Mapping
6.8 Bloom and Glow Effects
6.9 Shadows
6.9.1 Theoretical Background
6.9.2 Adding Shadows to the Framework
6.10 Summary and Next Steps
Index