Soft-Body Dynamics Deformable Objects

Total Page:16

File Type:pdf, Size:1020Kb

Soft-Body Dynamics Deformable Objects Deformable Physics Soft-Body Dynamics Deformable Objects A difficult problem Lots of specific solutions but no accepted general best method Applies to: Soft bodies – incl. character animation Destruction Fluid simulation Demo: Pixelux Digital Molecular Matter Used in LucasArts’ "Star Wars: The Force Unleashed". Soft Body Dynamics Visually Realistic physical simulations of motion and properties of deformable objects Shape and topology of objects changes Points within the object move relative to one another However shape has tendency to retain it’s shape to some degree: elastic vs plastic E.g. muscle, fat, hair, plants, clothing and fabric Soft-body Physics Engines Havok Cloth PhysX Bullet Deformation in Graphics Two classes of deformation Geometric deformation Physically based deformation Geometric Deformation Solid Deformations Alan H. Barr, Global and Local Deformations of Solid Primitives, Computer Graphics (Proceedings of SIGGRAPH 84). 18(3), pp. 21-30, 1984. Hierarchical solid modeling transformation of surfaces Locally specified deformation by local/tangent transformation matrices Can be used for e.g. twisting, bending, tapering, … now mainstream Free Form Deformations (FFD) Thomas W. Sederberg, Scott R. Parry, Free-Form Deformation of Solid Geometric Models, Computer Graphics (Proceedings of SIGGRAPH 86). 20(4), pp. 151-160, 1986. Global FFD Local FFD Sabine Coquillart, Extended Free-Form Deformation: A Sculpturing Tool for 3D Geometric FFD Modeling,Computer Graphics (Proceedings of SIGGRAPH 90). 24(4), pp. 187-196, 1990. William M. Hsu, John F. Hughes, Henry Kaufman, FFD Direct manipulation of free-form deformations, Computer Graphics (Proceedings of SIGGRAPH 92). 26(2), pp. 177-184, 1992. Working with control points can be awkward Apply (displacement) constraints directly to surface Karan Singh, Eugene L. Fiume, Wires: A Geometric Deformation Technique, Proceedings Wires of SIGGRAPH 98. pp. 405-414, 1998. Physically Based Deformation Elastically Deformable Models Terzopoulos, D., Platt, J., Barr, A., and Fleischer, K. Elastically Deformable Models, ACM SIGGRAPH 87, 205-214, 1987. Major contribution to physically based deformable models in graphics Lagrangian derivation of eqns of motion r r E(r) f(r,t) t t t t r(a, t): position of particle a at time Net externally applied forces time Net instantaneous potential energy Damping density Mass density of body at a Deformable Object Approaches Solutions from Engineering E.g. Finite element simulation Strive for accuracy Generally very slow Sometimes do not converge to a solution Don’t discern if the visual response is appealing – often provide other kinds of info: Visualization is somewhat different from computer graphics Non-realtime Graphical Solutions E.g. Special effects in movies and commercials Faster solutions, but not fast enough. Animators don’t use techniques if the previews are too expensive. Not as accurate as engineering Focus on Appeal Recent interest in “controllable” simulations Real-time Solutions Resolution Reduction Blobby and coarse look Details disappear Use specialized real-time techniques Physics low-res, appearance hi-res (shader effects) Reduction of dimension from 3d to 2d or 2.5d (height field fluids, BEM) Level of detail (LOD) No equation solving, procedural animation for specific effects Interactive Physics requirements Solutions in Engineering and Off-line animation generally don’t fulfill the requirements of real-time physics Reality methods require: Efficiency Most of the time is going to be used in the rendering process (especially in games). Interactive responses Low latency Visual and haptic minimum frequency constrains Stability Must guarantee stability If the model blows up we lose immersion Realism Interactivity vs. accuracy Plausibility vs. accuracy Taxonomy of Deformable Simulation We can categorise techniques based on: Phenomena they are meant to simulate Formulation of the solution Space Discretization method used Time Discretization methods used Phenomena Being Simulated Elastic objects Plastic objects Fluids Liquids Smoke, clouds fire Cloth Hair Formulation of solution Eulerian reference system attached to the space Lagrangian reference system attached to the object Semi-Lagrangian Space Discretization Mesh based techniques A mesh joins the object nodes Large deformations are hard to simulate (fluids) Object boundary is explicitly calculated Mesh elements: segments, triangles, tetrahedrons, hexahedrons… Example: Mass-spring systems Meshless techniques No explicit mesh connecting particles Difficult to compute the object’s boundary (hard to draw) Suitable for large deformation: like fluids Example: SPH Time Discretization Explicit i1 i i x x v t Current state depends only on past states vi1 vi m1f it Faster Not unconditionally stable Implicit xi1 xi vi1t current state depends on past states vi1 vi m1f i1t and on the current state Requires solving a system of equations Generally slower Adds artificial damping (depending on the object properties) Unconditionally stable Mass-spring Systems Mass-spring Model Body modelled as point masses: masses connected by (weightless) springs Hooke’s Law fof Damped Spring Restoring force fspring kspring(x r) Damping force (for now, lets just use viscous drag - effectively damps oscillation and other motions) fdrag kdragv Basic deformable objects From erleben et al ch 8 Start with newtonian particle system f mx x f / m For a particle system we know the accelerations acting on a particle at any time Assume Explicit Eurler Integration and that time is discretised as ti+1 = h + ti Second order Taylor approximation of position of particle at time ti+1 : xi1 xi x i x i1 x i f(ti ) / m Leads to instability if step-size is too high particle will diverge Not unconditionally stable Verlet Integration Originated in molecular dynamics (central difference approximation: find x based on previous frame and next frame) x(t h) 2x(t) x(t h) h2a(t) A velocity-free formulation (velocity implicitly represented by current and previous positions) in code (store current x and previous x): x = 2*x – x_prev + a *h^2; x_prev = x; not always accurate but fast and stable See; Jakobsen GDC 2001 talk: Advanced Character Physics http://www.floatingorigin.com/mirror/jacobson_01.shtml Cloth Provot. X, “Deformation constraints in a mass-spring model to describe rigid cloth behaviour” Graphics Interface 2001, pp147-154 Springs chosen in a certain structure to model deformable dynamic properties verlet integration An adaptive technique; Dynamic inverse procedure applied to cap deformations for excessive deformation rates More detail on Verlet: http://wapedia.mobi/en/Verlet_integration Mass-spring system for cloth Structural Springs between adjacent particles – resist stretching and compression. Usually relatively high k Shearing Springs connecting diagonal adjacent particles in a regular grid – relatively low k Bending Springs a.k.a flexion springs, prevent sharp ridges when folded: links every second or third particles. Usually very low k for cloth Unstructured Meshes Regular grid is not always applicable For an unstructured mesh: Structural springs correspond to 1-neighbourhood Shearing and bending to a 2-neighbourhood 1 - neighbourhood 2 - neighbourhood Implicit Integration David Baraff, Andrew Witkin The difference in the two methods is that the Large Steps in Cloth Simulation forward method’s step is based solely on Siggraph 1998 conditions at time t0 while the backward http://ai.stanford.edu/~latombe/cs99k/ method’s step is written in terms of conditions at 2000/cloth.pdf the terminus of the step itself.4 Integration Scheme Comparisons http://femto.cs.uiuc.edu/~sbond/code/SpringMass/ Deformable Solids Discretise object into 3d rectilinear grid (voxels) In addition to shearing diagonals we need spatial diagonals that counter volume loss Unstructured solid meshes can be voxelised Mesh points in between grid nodes are updated by trilinear interpolation Muller, M., Teschner, M., and Gross, M. Physically- Based Simulation of Objects Represented by Mesh Surface Meshes. In Proceedings of the Computer coupling Graphics international 2004. Tetrahedral decomposition Split mesh up into tetrahedra Note that interior details are important (not just surface) Delauney tetrahedralization Springs between vertices and 2+ neighbourhoods depending on rigidity http://tetgen.berlios.de/.
Recommended publications
  • Agx Multiphysics Download
    Agx multiphysics download click here to download A patch release of AgX Dynamics is now available for download for all of our licensed customers. This version include some minor. AGX Dynamics is a professional multi-purpose physics engine for simulators, Virtual parallel high performance hybrid equation solvers and novel multi- physics models. Why choose AGX Dynamics? Download AGX product brochure. This video shows a simulation of a wheel loader interacting with a dynamic tree model. High fidelity. AGX Multiphysics is a proprietary real-time physics engine developed by Algoryx Simulation AB Create a book · Download as PDF · Printable version. AgX Multiphysics Toolkit · Age Of Empires III The Asian Dynasties Expansion. Convert trail version Free Download, product key, keygen, Activator com extended. free full download agx multiphysics toolkit from AYS search www.doorway.ru have many downloads related to agx multiphysics toolkit which are hosted on sites like. With AGXUnity, it is possible to incorporate a real physics engine into a well Download from the prebuilt-packages sub-directory in the repository www.doorway.rug: multiphysics. A www.doorway.ru app that runs a physics engine and lets clients download physics data in real Clone or download AgX Multiphysics compiled with Lua support. Agx multiphysics toolkit. Developed physics the was made dynamics multiphysics simulation. Runtime library for AgX MultiPhysics Library. How to repair file. Original file to replace broken file www.doorway.ru Download. Current version: Some short videos that may help starting with AGX-III. Example 1: Finding a possible Pareto front for the Balaban Index in the Missing: multiphysics.
    [Show full text]
  • Procedural Destruction of Objects for Computer Games
    Procedural Destruction of Objects for Computer Games PUBLIC VERSION THESIS submitted in partial fulfilment of the requirements for the degree of MASTER OF SCIENCE in MEDIA AND KNOWLEDGE ENGINEERING by Joris van Gestel born in Zevenhuizen, the Netherlands Computer Graphics and CAD/CAM Group Cannibal Game Studios Department of Mediamatics Molengraaffsingel 12-14 Faculty of EEMCS, Delft University of Technology 2629 JD Delft Delft, the Netherlands The Netherlands www.ewi.tudelft.nl www.cannibalgamestudios.com Author: Joris van Gestel Student id: 1099825 Email: [email protected] Date: May 10, 2011 © 2011 Cannibal Game Studios. All Rights Reserved i Summary Traditional content creation for computer games is a costly process. In particular, current techniques for authoring destructible behaviour are labour intensive and often limited to a single object basis. We aim to create an intuitive approach which allows designers to visually define destructible behaviour for objects in a reusable manner, which can then be applied in real-time. First we present a short introduction into the way that destruction has been done in games for many years. To better understand the physical processes that are being replicated, we present some information on how destruction works in the real world, and the high level approaches that have developed to simulate these processes. Using criteria gathered from industry professionals, we survey previous research work and determine their usability in a game development context. The approach which suits these criteria best is then selected as the basis for the approach presented in this work. By examining commercial solutions the shortcomings of existing technologies are determined to establish a solution direction.
    [Show full text]
  • Maya 2012 Create Breathtaking 3D
    ® ® Autodesk Maya 2012 Create Breathtaking 3D. Create innovative digital entertainment with Autodesk Maya 2012, an end-to-end solution for CG production at an exceptional value. I really like all the positive steps taken in Maya 2012. With the high-fidelity viewport, enhancements to Nucleus, and the overall performance improvements, Maya has become more flexible, powerful and modern. Black Swan. Image courtesy of Look FX. © Fox Searchlight Pictures. — Peter Shipkov Technical Director Modernize your pipeline and compete more effectively of the multi-threaded NVIDIA® PhysX® engine* to Digital Domain with Autodesk® Maya® 2012 modeling, animation, create rigid-body simulations directly in the Maya visual effects, rendering, and compositing software. viewport—and if you use PhysX in your game engine, Whether you work in film, games, television, or you’ll be matching the runtime solution. The new Digital advertising, publishing, and graphic design production, Molecular Matter plug-in from Pixelux Entertainment™ Maya 2012 offers state-of-the-art toolsets, combined enables you to create highly-realistic shattering into a single affordable offering. simulations with multiple interacting materials. Meanwhile, further development of the Nucleus New Toolsets for Previsualization and unified simulation framework and its associated Games Prototyping modules means that convincing pouring, splashing, Today’s challenging productions demand modern and boiling liquid effects are easier to achieve. toolsets that enable you to make interactive decisions in-context. Maya 2012 delivers new and enhanced Better Pipeline Integration features to help you create more compelling New single-step interoperability between Maya 2012, previsualizations and games prototypes, or experiment Autodesk® MotionBuilder® 2012 software, and the and iterate more easily on your animations.
    [Show full text]
  • Chapter 9 Animation System
    Chapter 10 Collision and Rigid Body Dynamics asyrani.com 10.1 Do You Want Physics in Your Game? Things You Can Do with a Physics System A LOT Is Physics Fun? Simulations (Sims) Gran Turismo Flight Simulator Need For Speed Physics Puzzle Games Bridge Builder Fantastic Contraption Crayon Physics The Incredible Machine Sandbox Games LittleBigPlanet GTA 5 Spore Goal-Based and Story-Driven Games A goal-based game has rules and specific objectives that the player must accomplish in order to progress; in a story-driven game , telling a story is of paramount importance. Integrating a physics system into these kinds of games can be tricky. We generally give away control in exchange for a realistic simulation, and this loss of control can inhibit the player’s ability to accomplish goals or the game’s ability to tell the story. Impact of Physics on a Game Predictability Tuning and control Emergent behaviors Engineering Impacts Collision Tools pipeline User interface detection Animation Rag doll AI and character physics motion Networking Record and Graphics and playback multiplayer Art Impacts Additional tool More-complex and workflow content complexity Loss of control Other Impacts Interdisciplinary impacts. The introduction of a dynamics simulation into your game requires close cooperation between engineering, art, and design. Production impacts. Physics can add to a project’s development costs, technical and organizational complexity, and risk. 10.2 Collision/Physics Middleware I-Collide SWIFT V-Collide RAPID ODE ODE stands for “Open Dynamics Engine ” (http://www.ode.org). As its name implies, ODE is an open-source collision and rigid body dynamics SDK.
    [Show full text]
  • Vlastnosti Fyzikálního Enginu Havok Physics
    Západo česká univerzita v Plzni Fakulta aplikovaných v ěd Katedra informatiky a výpo četní techniky Bakalá řská práce Vlastnosti fyzikálního enginu Havok Physics Plze ň, 2009 Pavel Karlík 1 Originální zadání práce 2 Prohlášení: Prohlašuji, že jsem bakalá řskou práci vypracoval samostatn ě a výhradn ě s použitím citovaných pramen ů, pokud není explicitn ě uvedeno jinak. V Plzni dne …………… Pavel Karlík ………………… 3 Abstract Characteristics of physical engine Havok Physics Physical engines are important component in many programs as they want to simulate more and more often real physics - for example computer games, pharmacy, astronomy… The deal of this bachelor thesis is to understand physical engine Havok Physics, make a set of demonstration scenes for beginners, a set of tests to discover how exactly can physical engines solve basic things from real physics, look for bugs and strange behavior and then (with experiences from previous tasks) find solution how to eliminate them during programming. 4 Obsah: 1. ÚVOD ............................................................................................................ 8 2. HAVOK PHYSICS ............................................................................................. 9 2.1 OBECNÉ ................................................................................................................. 9 2.2 SCHOPNOSTI ......................................................................................................... 10 2.3 ARCHITEKTURA ....................................................................................................
    [Show full text]
  • New Game Physics Added Value for Transdisciplinary Teams Andreas Schiffler
    . New Game Physics Added Value for Transdisciplinary Teams Andreas Schiffler A dissertation in partial satisfaction of the requirements for the degree of Doctor of Philosophy (Ph.D.) University of Plymouth Supplemented by: Proof of Practice: 1 DVD video documentation, 1 DVD appendices, source code, game executable, and supporting files Wordcount: 76,970 Committee in Charge: Supervisor: 2nd Supervisor: Prof. Jill Scott Dr. Daniel Bisig Zurich University of the Arts (ICS) Zurich University of the Arts (ICST) University of Plymouth University of Zurich (AIL) March 11, 2012 Abstract Andreas Schiffler (2011), `New Game Physics: Added Value for Transdisciplinary Teams', Ph.D. University of Plymouth, UK. This study focused on game physics, an area of computer game design where physics is applied in interactive computer software. The purpose of the re- search was a fresh analysis of game physics in order to prove that its current usage is limited and requires advancement. The investigations presented in this dissertation establish constructive principles to advance game physics design. The main premise was that transdisciplinary approaches provide sig- nificant value. The resulting designs reflected combined goals of game devel- opers, artists and physicists and provide novel ways to incorporate physics into games. The applicability and user impact of such new game physics across several target audiences was thoroughly examined. In order to explore the transdisciplinary nature of the premise, valid evidence was gathered using a broad range of theoretical and practical methodologies. The research established a clear definition of game physics within the context of historical, technological, practical, scientific, and artistic considerations. Game analysis, literature reviews and seminal surveys of game players, game developers and scientists were conducted.
    [Show full text]
  • Systematic Literature Review of Realistic Simulators Applied in Educational Robotics Context
    sensors Systematic Review Systematic Literature Review of Realistic Simulators Applied in Educational Robotics Context Caio Camargo 1, José Gonçalves 1,2,3 , Miguel Á. Conde 4,* , Francisco J. Rodríguez-Sedano 4, Paulo Costa 3,5 and Francisco J. García-Peñalvo 6 1 Instituto Politécnico de Bragança, 5300-253 Bragança, Portugal; [email protected] (C.C.); [email protected] (J.G.) 2 CeDRI—Research Centre in Digitalization and Intelligent Robotics, 5300-253 Bragança, Portugal 3 INESC TEC—Institute for Systems and Computer Engineering, 4200-465 Porto, Portugal; [email protected] 4 Robotics Group, Engineering School, University of León, Campus de Vegazana s/n, 24071 León, Spain; [email protected] 5 Universidade do Porto, 4200-465 Porto, Portugal 6 GRIAL Research Group, Computer Science Department, University of Salamanca, 37008 Salamanca, Spain; [email protected] * Correspondence: [email protected] Abstract: This paper presents a systematic literature review (SLR) about realistic simulators that can be applied in an educational robotics context. These simulators must include the simulation of actuators and sensors, the ability to simulate robots and their environment. During this systematic review of the literature, 559 articles were extracted from six different databases using the Population, Intervention, Comparison, Outcomes, Context (PICOC) method. After the selection process, 50 selected articles were included in this review. Several simulators were found and their features were also Citation: Camargo, C.; Gonçalves, J.; analyzed. As a result of this process, four realistic simulators were applied in the review’s referred Conde, M.Á.; Rodríguez-Sedano, F.J.; context for two main reasons. The first reason is that these simulators have high fidelity in the robots’ Costa, P.; García-Peñalvo, F.J.
    [Show full text]
  • The Usage of Nanotechnology in Architecture Nanotechnology Effect on the Architectural Form and Function
    Al Azhar University Faculty of Engineering Department of Architectural Engineering The Usage of Nanotechnology in Architecture Nanotechnology Effect on the Architectural Form and Function By Sahar Abd AlWahab Mohammad B.Sc. of Architecture, Al Azhar University A Thesis Submitted to the Faculty of Engineering at AL Azhar University For the Degree of Master of Science in Architecture Under the supervision of Prof. Ahmed Dr. Osama Mohamed Dr. Hesham Ahmed Mohamed El Kourdy Al Rawi Sobh Professor of Associate Professor of Associate Professor of Architecture, Architecture, Architecture, Faculty of Engineering, Faculty of Engineering, Faculty of Engineering, AL Azhar University AL Azhar University AL Azhar University 2014 Dedication I dedicate this work to the soul of my father i | Page Acknowledgements Firstly, I thank God who gave me the ability to complete this research. Wishing God to honour me by making this research “a knowledge which is beneficial” as our prophet PBUH said. This research project would not have been possible without the support of many people. My first acknowledgement is for Prof. Ahmed El Kordy who offered support, help and guidance. Second acknowledgement is for Dr. Osama Al Rawi for his useful comments, precious advice, time and effort. Finally, thanks to Dr Hisham Sobh who encouraged, supported and offered me advice. I send my sincere thanks to all of them. I would like also to convey thanks to my family especially my mother and sister who encouraged me to finish this work. Also my gratitude goes to Eng. Hisham Nadim for his help, and to my friends Randa Medhat and Yomna El Ghazi who encouraged and helped me.
    [Show full text]
  • PUC-SP Grazielle De Lima Cianfa a Física Básica Nos
    PONTIFÍCIA UNIVERSIDADE CATÓLICA DE SÃO PAULO – PUC-SP Grazielle de Lima Cianfa A física básica nos jogos digitais Mestrado em Tecnologias da Inteligência e Design Digital São Paulo/2014 Página | 2 Página | 3 PONTIFÍCIA UNIVERSIDADE CATÓLICA DE SÃO PAULO – PUC-SP Grazielle de Lima Cianfa A física básica nos jogos digitais Dissertação apresentada à Banca Examinadora da Pontifícia Universidade Católica de São Paulo, como exigência parcial para obtenção do título de MESTRE em Tecnologias da Inteligência e Design Digital, sob a orientação do Prof. Dr. Nelson Brissac Peixoto. Mestrado em Tecnologias da Inteligência e Design Digital São Paulo/2014 Página | 4 Página | 5 Banca Examinadora ____________________________________________ ____________________________________________ ____________________________________________ Página | 6 Página | 7 Agradecimentos Agradeço à minha família por toda a motivação e compreensão! Agradeço ao meu orientador Prof Dr Nelson Brissac pela paciência e dedicação. Agradeço aos amigos por todo o apoio. Agradeço a PUC-SP e a CAPES pela oportunidade a mim concedida. Página | 8 Página | 9 “O importante é não parar de questionar” Albert Einstein Página | 10 Página | 11 Resumo A presente pesquisa trata sobre a física básica nos jogos digitais. Apresentamos o processo de como ela chega até ao jogador, mas sem nos apegarmos aos códigos de programação ou softwares específicos. Nosso foco foi descobrir se a física que vemos nos jogos digitais é real ou não e como ela atinge o jogador, através da análise da física básica nos jogos. Como existem diversos jogos e o campo de estudo da Física é amplo, selecionamos um jogo e um fenômeno físico para analisar. O jogo chama-se Dead Space 1 e nele verificamos o fenômeno da gravidade.
    [Show full text]
  • Top Reasons to Buy Autodesk Maya Software
    Top Reasons to Buy Autodesk Maya Software The Power of > The Core of a Modern CG Pipeline Autodesk® Maya® 2013 software offers a deep and flexible feature Autodesk Maya set that forms a robust CG pipeline core. With powerful integrated modeling, simulation, animation, rendering, matchmoving, and Buy a license of Autodesk® Maya® 2013 compositing capabilities; single-step data exchange with other 3D software today, and gain access to a deep ® and flexible creative feature set. Maya is an applications in the Autodesk Entertainment Creation Suites 2013; integrated 3D modeling, animation, visual and extensive opportunities for customization, studios large and effects, rendering, and compositing software small can build a modern pipeline with Maya at its core. Maya is that has been used in the making of numerous used by leading artists to help create innovative entertainment, top movies, games, and television projects. and both Maya and its developers have garnered numerous awards Image courtesy of Atomic Fiction. for technological innovation including three Academy Awards®. Now Is the Time > Stunning Simulations Maya offers extensive simulation tools for creating high-quality, For more information about Maya, go to www.autodesk.com/maya. realistic fluid, particle, cloth, fur, hair, rigid-body, and soft-body dynamics. Engineered by leading research scientists, Maya Fluid To locate the reseller nearest you, visit Effects and the Maya Nucleus Unified Simulation Framework— www.autodesk.com/reseller. with its Maya nCloth, Maya nParticles, and now Maya nHair modules—are designed to help make simulations more realistic. In addition, you can use the multithreaded NVIDIA® PhysX® engine*, the high-performance open source AMD Bullet Physics Image courtesy of Cutting Edge.
    [Show full text]
  • Klassiker Der Spielegeschichte 5
    Klassiker der Spielegeschichte 6 3 World of Goo 8 November 2012 Dr. Stefan Werning | Universität Bayreuth | Digitale Medien | [email protected] Spiele als Simulation • die Simulation (vermeintlich) berechenbaren emergenten Verhaltens ist ein genuines Merkmal digitaler Spiele – Wirtschaftssimulationen (Vermeer, Hanse, Kaiser) – ökologische Simulationen (Sim Earth, Sim Life) – psychologische Simulationen (Alter Ego, Nintendogs, Die Sims) – Physiksimulationen 2 Physik als Game-Design-Heuristik • BEISPIEL Half-Life 2 – Physikrätsel als emergentes neues Spielprinzip • BEISPIEL Realistic Summer Sports Simulator – symbolische Ausdeutung einfacher physikalischer Gesetzmäßigkeiten – d.h. Physiksimulation ABER: korrespondiert nicht mit dem vermeintlich Simulierten 3 Physikengines • Physikmodellierung stammt ursprünglich aus der Computergraphik • Vergleich der primären Physikengines PhysX, Havok und ODE • Aspekte – Kräfte, insbesondere Schwerkraft (BEISPIEL Super Mario Galaxy 2) – Kollisionserkennung – Deformation und Destruktion • jeder Aspekt kann als Gamedesign-Heuristik fungieren 4 Festkörperphysik • BEISPIEL Box2D Vehicles • Fixtures • Joints (Auszug) – Distance – Revolute (+Motor) – Prismatic – Pulley 5 Soft-Body-Physik • BEISPIEL Jelly Car • BEISPIEL Loco Roco 2 • BEISPIEL Gish 6 Flüssigkeitsphysik • Hydrophobia • The Odyssey - Winds of Athena • Pixeljunk Shooter 7 PhysX – Physik als Hardwarefunktion • BEISPIEL Mirror‘s Edge • durch technische Potenzierung wird Physik zum Ornament 8 Ragdolls • prozedurale Animation, auch bspw.
    [Show full text]
  • Comparison of Shatter Effects in Autodesk Maya with Ncloth and DMM Plugin
    Code:________________ Faculty of Engineering and Sustainable Development Comparison of Shatter Effects in Autodesk Maya with nCloth and DMM Plugin Caroline Irwin June 2012 Bachelor Thesis, 15 credits, C Computer Science Creative Computer Graphics Examiner: Sharon Lazenby Supervisor: Torsten Jonsson Comparison of Shatter Effects in Autodesk Maya with nCloth and DMM Plugin by Caroline Irwin Faculty of Engineering and Sustainable Development University of Gävle S-801 76 Gävle, Sweden Email: [email protected] Abstract In today’s society, movies and videogames with a great deal of visual effects that contain objects that break, shatter or explode are popular. They are created from a number of different kinds of 3D programs and plugins. This time Autodesk Mayas nCloth is compared with the new built-in Digital Molecular Matter (DMM) Plugin to see which technique is easiest to use, as well as delivers the best result. A modeled sculpture was shattered using both nCloth and DMM and a set of predefined areas were studied. The results reveals that both techniques can be employed however the DMM technology has several advantages where less time consumption is one of them. Keywords: Autodesk Maya, 3D, shatter effects, DMM Plugin, nCloth, Shards, Tetrahedral Elements Contents 1 Introduction .............................................................................................................. 1 1.1 Aim .................................................................................................................................. 1 1.2 Purpose
    [Show full text]