Cargando…

Practical Maya Programming with Python /

In Detail Autodesk Maya is a 3D computer graphics software. It offers a vast and flexible set of features utilizing Python. It is not difficult to get started using Python in Autodesk Maya, but it can be difficult to go from writing procedural, MEL-inspired tools to building the powerful yet simple...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Galanakis, Robert
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birming ham : Packt Publishing, 2014.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ia 4500
001 EBSCO_ocn885019757
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 140801s2014 enk o 000 0 eng d
040 |a IDEBK  |b eng  |e pn  |c IDEBK  |d EBLCP  |d N$T  |d E7B  |d OCLCQ  |d COO  |d OCLCO  |d YDXCP  |d OCLCF  |d OCLCQ  |d DEBSZ  |d OCLCQ  |d FEM  |d AGLDB  |d OCLCQ  |d OCLCO  |d ICA  |d OCLCQ  |d OCLCO  |d ZCU  |d XFH  |d MERUC  |d OCLCQ  |d OCLCO  |d D6H  |d VTS  |d ICG  |d NLE  |d UKMGB  |d OCLCQ  |d OCLCO  |d STF  |d DKC  |d OCLCQ  |d AJS  |d OCLCO  |d OCLCQ 
016 7 |a 018014214  |2 Uk 
019 |a 968084513  |a 969036158  |a 994446160 
020 |a 9781849694735  |q (electronic bk.) 
020 |a 1849694737  |q (electronic bk.) 
020 |a 1322008493  |q (ebk) 
020 |a 9781322008493  |q (ebk) 
020 |a 9781849694728 
020 |a 1849694729 
029 1 |a AU@  |b 000062489934 
029 1 |a DEBBG  |b BV044063308 
029 1 |a DEBSZ  |b 431502366 
029 1 |a DEBSZ  |b 484726404 
029 1 |a UKMGB  |b 018014214 
029 1 |a AU@  |b 000067093505 
029 1 |a AU@  |b 000056003904 
029 1 |a DKDLA  |b 820120-katalog:999940740205765 
035 |a (OCoLC)885019757  |z (OCoLC)968084513  |z (OCoLC)969036158  |z (OCoLC)994446160 
037 |a 15344256294308671  |b TotalBoox  |f Ebook only  |n www.totalboox.com 
050 4 |a TR897.7 
072 7 |a COM  |x 000000  |2 bisacsh 
082 0 4 |a 006.6/93  |2 22 
049 |a UAMI 
100 1 |a Galanakis, Robert. 
245 1 0 |a Practical Maya Programming with Python /  |c Robert Galanakis. 
260 |a Birming ham :  |b Packt Publishing,  |c 2014. 
300 |a 1 online resource. 
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  |2 rda 
490 1 |a Community Experience Distilled 
588 0 |a Print version record. 
520 |a In Detail Autodesk Maya is a 3D computer graphics software. It offers a vast and flexible set of features utilizing Python. It is not difficult to get started using Python in Autodesk Maya, but it can be difficult to go from writing procedural, MEL-inspired tools to building the powerful yet simple systems that Python promises. Practical Maya Programming with Python will help you master both Python and Maya. With thorough explanations, illustrative examples, and complete sample projects, you will learn how to use Python to charm Maya into obeying your every command. Practical Maya Programming with Python will teach you how PyMEL works as well as how to deal with errors and write composable code in Python. Approach "Practical Maya Programming with Python" is a practical tutorial packed with plenty of examples and sample projects which guides you through building reusable, independent modules and handling unexpected errors. Who this book is for If you are a developer looking to build a powerful system using Python and Maya's capabilities, then this book is for you. Practical Maya Programming with Python is perfect for intermediate users with basic experience in Python and Maya who want to better their knowledge and skills. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Introspecting Maya, Python, and PyMEL; Creating your library; Using the interpreter; Finding a place for our library; Choosing a development root; Creating a function in your IDE; Reloading code changes; Exploring Maya and PyMEL; Creating an introspection function; Understanding Python and MEL types; Using the method resolution order; PyNodes all the way down; Understanding PyMEL data and math types; Leveraging the REPL; Building the pmhelp function. 
505 8 |a Creating a query string for a PyMEL objectCreating more tests; Adding support for modules; Adding support for types; Adding support for methods; Adding support for functions; Adding support for non-PyMEL objects; Designing with EAFP versus LBYL; Code is never complete; Opening help in a web browser; Summary; Chapter 2: Writing Composable Code; Defining composability; Identifying anti-patterns of composability; Avoiding the use of Boolean flags; Evolving legacy code into composable code; Rewriting code for composability; Getting the first Item in a sequence; Writing head and tail functions. 
505 8 |a Learning to use list comprehensionsImplementing is_exact_type; Saying goodbye to map and filter; Writing a skeleton converter library; Writing the docstring and pseudocode; Understanding docstrings and reStructured Text; Writing the first implementation; Breaking the first implementation; Understanding interface contracts; Extracting the safe_setparent utility function; Learning how to refactor; Simplifying the node to joint conversion; Learning how to use closures; Dealing with node connections; Dealing with namespaces; Wrapping up the skeleton converter; Writing a character creator. 
505 8 |a Stubbing out the character creatorImplementing convert_hierarchies_main; Implementing convert_hierarchies; Decomposing into composable functions; Implementing convert_hierarchy; Supporting inevitable modifications; Improving the performance of PyMEL; Defining performance; Refactoring for performance; Rewriting inner loops to use maya.cmds; Summary; Chapter 3: Dealing with Errors; Understanding exceptions; Introducing exception types; Explaining try/catch/finally flow control; Explaining traceback objects; Explaining the exc_info tuple; Living with unhandled exceptions. 
505 8 |a Handling exceptions at the application levelGolden rules of error handling; Focus on the critical path; Keep the end user in mind; Only catch errors you can handle; Avoid partial mutations; Practical error handling in Maya; Dealing with expensive and mutable state; Leveraging undo blocks; Dealing with Maya's poor exception design; Leveraging the Maya application; Dealing with the Maya application; Leveraging Python, which is better than MEL; Building a high-level error handler; Understanding sys.excepthook; Using sys.excepthook in Maya; Creating an error handler; Improving the error handler. 
546 |a English. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
630 0 0 |a Maya (Computer file) 
630 0 7 |a Maya (Computer file)  |2 fast  |0 (OCoLC)fst01392146 
650 0 |a Python (Computer program language) 
650 0 |a Computer animation. 
650 0 |a Three-dimensional display systems. 
650 6 |a Python (Langage de programmation) 
650 6 |a Animation par ordinateur. 
650 6 |a Affichage tridimensionnel. 
650 7 |a computer animation.  |2 aat 
650 7 |a three-dimensional.  |2 aat 
650 7 |a COMPUTERS  |x General.  |2 bisacsh 
650 7 |a Computer animation.  |2 fast  |0 (OCoLC)fst00872015 
650 7 |a Python (Computer program language)  |2 fast  |0 (OCoLC)fst01084736 
650 7 |a Three-dimensional display systems.  |2 fast  |0 (OCoLC)fst01150324 
776 0 8 |i Print version:  |z 9781322008493 
830 0 |a Community experience distilled. 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=817628  |z Texto completo 
938 |a EBL - Ebook Library  |b EBLB  |n EBL1389410 
938 |a ebrary  |b EBRY  |n ebr10900539 
938 |a EBSCOhost  |b EBSC  |n 817628 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis28705779 
938 |a YBP Library Services  |b YANK  |n 12006010 
994 |a 92  |b IZTAP