Phranakorn Rajabhat University Library

Creating visual effects in Maya: Fire, water, debris, and destruction /

Lanier, Lee, 1966-

Creating visual effects in Maya: Fire, water, debris, and destruction / Creating visual effects in Maya Lee Lanier, author - Burlington : Focal Press, 2014 - xvi, 305 p. : ill ; 24 cm.

Available to OhioLINK libraries.

Adding foliage, fire, and smoke with paint effects page 1-32 Growing short hair, long hair, grass, and electric arcs with fur and nHair page 33-66 Creating water, smoke, and sparks with nParticles page 67-94 Generating nParticle swarms and bubble masses with expressions and MEL scripting page 95-124 Simulating semi-rigid and rigid debris with python, pyMEL, and nCloth page 125-146 Producing dust puffs, fog, trailing smoke, and fireballs with rigid and fluid dynamics page 147-174 Animating fire, water, and damage with effects, fluid effects, deformers, and textures page 175-200 Building reference models and motion tracking with Maya and matchmover page 201-226 Combining nCloth, nParticlrs, and fluid effects to create complex page 227-252 Preparing, rendering, and combining render passes page 253-294

9780415834186 2800


MAYA (COMPUTER FILE)
COMPUTER ANIMATION
COMPUTER GRAPHICS

TR 897.7 / L36C 2014

มหาวิทยาลัยศรีปทุม (กทม.)
2410/2 ถ.พหลโยธิน เขตจตุจักร กรุงเทพฯ 10900
Tel : 02-579-1111, 02-561-2222
มหาวิทยาลัยศรีปทุม (ชลบุรี)
79 หมู่ 1 ถ.บางนา-ตราด ต.คลองตำหรุ อ.เมือง จ.ชลบุรี 20000
Tel : 038-146-123
มหาวิทยาลัยศรีปทุม (ขอนแก่น)
182/12 หมู่ 4 ถ.ศรีจันทร์ ต.ในเมือง อ.เมือง จ.ขอนแก่น 40000
Tel : 043-224-111


 

$(document).ready(function() { // Basic detection of search var searchBox = $('#transl1'); // This is standard OPAC search input id ?? // Actually standard is 'q' or 'idx'. // We want to trigger when the user sees results. // Usually we check if we are on search results page. if ($('body').hasClass('opac-results')) { var params = new URLSearchParams(window.location.search); var query = params.get('q'); if (query) { // Show Loading var container = $('
'); container.append('

✨ AI Recommendations

'); container.append('
Searching with AI...
'); // Prepend to main content // Selector depends on theme. 'div.maincontent' or '#opac-main' $('#userresults').prepend(container); $.ajax({ url: '/api/v1/contrib/aisearch/search?q=' + encodeURIComponent(query), method: 'GET', success: function(data) { container.find('.spinner').remove(); if (data && data.length > 0) { var ul = ''; container.append(ul); } else { container.append('

No AI recommendations found.

'); } }, error: function() { container.find('.spinner').remove(); container.append('

Error loading AI recommendations.

'); } }); } } });