Cargando…

Python graphics : a reference for creating 2D and 3D images /

Use Python's built-in features to create innovative graphics for data visualization and technical illustrations. This book goes beyond simple commands and libraries to explain how to not only display but also rotate, shade, and edit graphics for any purpose. Starting with the essential Python f...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Korites, B. J. (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [New York, NY] : Apress, [2018]
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1041707004
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 180622s2018 nyua o 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d GW5XE  |d EBLCP  |d OCLCF  |d UAB  |d UPM  |d VT2  |d MOQ  |d YOU  |d WYU  |d OTZ  |d LVT  |d OCLCQ  |d U3W  |d K6U  |d CAUOI  |d SNK  |d MERER  |d OCLCQ  |d OCLCA  |d COO  |d UKAHL  |d OCLCQ  |d UHL  |d OCLCQ  |d UMI  |d SFB  |d BRF  |d DCT  |d NLW  |d OCLCO  |d OCLCQ  |d OCLCO  |d COM  |d OCLCQ 
019 |a 1047693957  |a 1050976674  |a 1055328558  |a 1058828974  |a 1066620472  |a 1081259191  |a 1086545683  |a 1097085275  |a 1110861431  |a 1113277015  |a 1149390813  |a 1161073136  |a 1204068250  |a 1206408572  |a 1228649752  |a 1237466346  |a 1244634436 
020 |a 9781484233788  |q (electronic bk.) 
020 |a 1484233786  |q (electronic bk.) 
020 |a 1484233778 
020 |a 9781484233771 
020 |z 9781484233771 
024 3 |a 9781484233771 
024 7 |a 10.1007/978-1-4842-3378-8  |2 doi 
029 1 |a AU@  |b 000067504360 
029 1 |a CHNEW  |b 001063561 
029 1 |a CHVBK  |b 575141247 
035 |a (OCoLC)1041707004  |z (OCoLC)1047693957  |z (OCoLC)1050976674  |z (OCoLC)1055328558  |z (OCoLC)1058828974  |z (OCoLC)1066620472  |z (OCoLC)1081259191  |z (OCoLC)1086545683  |z (OCoLC)1097085275  |z (OCoLC)1110861431  |z (OCoLC)1113277015  |z (OCoLC)1149390813  |z (OCoLC)1161073136  |z (OCoLC)1204068250  |z (OCoLC)1206408572  |z (OCoLC)1228649752  |z (OCoLC)1237466346  |z (OCoLC)1244634436 
037 |a 9781484233771  |b 00152887 
050 4 |a QA76.73.P98 
072 7 |a COM  |x 051360  |2 bisacsh 
072 7 |a UMX  |2 bicssc 
072 7 |a UMX  |2 thema 
082 0 4 |a 005.133  |2 23 
049 |a UAMI 
100 1 |a Korites, B. J.,  |e author. 
245 1 0 |a Python graphics :  |b a reference for creating 2D and 3D images /  |c B.J. Korites. 
264 1 |a [New York, NY] :  |b Apress,  |c [2018] 
264 4 |c Ã2018 
300 |a 1 online resource :  |b illustrations 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
347 |b PDF 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed June 25, 2018). 
505 0 |a Intro; Table of Contents; About the Author; About the Technical Reviewer; Acknowledgments; Chapter 1: Essential Python Commands and Functions; 1.1 Programming Style; 1.2 The Plotting Area; 1.3 Establishing the Size of the Plotting Area; 1.4 Importing Plotting Commands; 1.5 Displaying the Plotting Area; 1.6 The Plotting Grid; 1.7 Saving a Plot; 1.8 Grid Color; 1.9 Tick Marks; 1.10 Custom Grid Lines; 1.11 Labelling the Axes; 1.12 The Plot Title; 1.13 Colors; 1.13.1 Color Mixing; 1.13.2 Color Intensity; 1.14 Overplotting; 1.15 Background Color; 1.16 The Plotting Area Shape. 
505 8 |a 1.17 How to Correct Shape Distortions1.17.1 Applying a Scale Factor When Plotting; 1.17.2 The Best Way: Scaling the Axes in plt.axis(); 1.18 Coordinate Axes; 1.19 Commonly Used Plotting Commands and Functions; 1.19.1 Points and Dots Using scatter(); 1.19.2 Lines Using plot(); 1.19.3 Arrows; 1.19.4 Text; 1.19.5 Lists, Tuples, and Arrays; 1.19.6 Arrays; 1.19.7 arange(); 1.19.8 range(); 1.20 Summary; Chapter 2: Graphics in Two Dimensions; 2.1 Lines from Dots; 2.2 Dot Art; 2.3 Circular Arcs from Dots; 2.4 Circular Arcs from Line Segments; 2.5 Circles; 2.6 Dot Discs; 2.7 Ellipses. 
505 8 |a 2.8 2D Translation2.9 2D Rotation; 2.10 Summary; Chapter 3: Graphics in Three Dimensions; 3.1 The Three-Dimensional Coordinate System; 3.2 Projections onto the Coordinate Planes; 3.3 Rotation Around the y Direction; 3.4 Rotation Around the x Direction; 3.5 Rotation Around the z Direction; 3.6 Separate Rotations Around the Coordinate Directions; 3.7 Sequential Rotations Around the Coordinate Directions; 3.8 Matrix Concatenation; 3.9 Keyboard Data Entry with Functional Program Structure; 3.10 Summary; Chapter 4: Perspective; 4.1 Summary; Chapter 5: Intersections. 
505 8 |a 5.1 Line Intersecting a Rectangular Plane5.2 Line Intersecting a Triangular Plane; 5.3 Line Intersecting a Circle; 5.4 Line Intersecting a Circular Sector; 5.5 Line Intersecting a Sphere; 5.6 Plane Intersecting a Sphere; 5.7 Summary; Chapter 6: Hidden Line Removal; 6.1 Box; 6.2 Pyramid; 6.3 Planes; 6.4 Sphere; 6.5 Summary; Chapter 7: Shading; 7.1 Shading a Box; 7.2 Shading a Sphere; 7.3 Summary; Chapter 8: 2D Data Plotting; 8.1 Linear Regression; 8.2 Function Fitting; 8.3 Splines; 8.4 Summary; Chapter 9: 3D Data Plotting; 9.1 3D Surfaces; 9.2 3D Surface Shading; 9.3 Summary. 
505 8 |a Chapter 10: Demonstrations10.1 Saturn; 10.2 Solar Radiation; 10.2.1 Photons and the Sun; 10.2.2 Max Planck's Black Body Radiation; 10.2.3 The Sun's Total Power Output; 10.3 Earth's Irradiance; 10.3.1 The Earth Sun Model; 10.4 Summary; Appendix A: Where to Get Python; Appendix B: Planck's Radiation Law and the Stefan-Boltzmann Equation; Index. 
520 |a Use Python's built-in features to create innovative graphics for data visualization and technical illustrations. This book goes beyond simple commands and libraries to explain how to not only display but also rotate, shade, and edit graphics for any purpose. Starting with the essential Python functions to set up a plotting space and produce 2 and 3-dimensional objects, you'll learn how to construct more complex objects, translate and rotate them, remove hidden lines, introduce shading to add realism, and project images to visualize any dataset. The final chapter includes several worked applications in science and engineering including planetary models, which you can adapt for your own use. Written for developers who want to harness Python's capabilities to fine-tune their images, Python Graphics covers the different commands for plotting dots, lines, arrows, or arcs, creating custom plotting grids, correcting distortions, adding text and labels to illustrations, manipulating arcs and circles, specify and use colors, and more. Armed with these techniques and core math skills, you'll be ready to create and customize detailed technical illustrations or data visualizations. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Python (Computer program language) 
650 0 |a Computer graphics. 
650 2 |a Computer Graphics 
650 6 |a Python (Langage de programmation) 
650 6 |a Infographie. 
650 7 |a computer graphics.  |2 aat 
650 7 |a Graphics programming.  |2 bicssc 
650 7 |a Programming & scripting languages: general.  |2 bicssc 
650 7 |a COMPUTERS  |x Programming Languages  |x Python.  |2 bisacsh 
650 7 |a Computer graphics.  |2 fast  |0 (OCoLC)fst00872119 
650 7 |a Python (Computer program language)  |2 fast  |0 (OCoLC)fst01084736 
776 0 8 |i Printed edition:  |z 9781484233771 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484233788/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH35093448 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5434480 
938 |a EBSCOhost  |b EBSC  |n 1836626 
994 |a 92  |b IZTAP