zoukankan      html  css  js  c++  java
  • implement mesh animation with mesh deformation

    refer to:

    http://http.developer.nvidia.com/CgTutorial/cg_tutorial_chapter06.html

    chapter 6. Animation

    This chapter describes various ways to animate objects using Cg. It has the following five sections:

    • "Movement in Time" introduces the concept of animation.
    • "A Pulsating Object" shows a vertex program that periodically displaces an object's surface outward, in the direction of its normal vectors.
    • "Particle Systems" describes how to use a physically based simulation to create a particle system, with all the calculations done by the GPU.
    • "Key-Frame Interpolation" explains key-frame animation, in which a vertex program animates an object by interpolating between different object poses.
    • "Vertex Skinning" explains how to displace vertices based on multiple weighted control matrices for more dynamic control in character animation.
    6.4 Key-Frame Interpolation

    3D games often use a sequence of key frames to represent an animated human or creature in various poses. For example, a creature may have animation sequences for standing, running, kneeling, ducking, attacking, and dying. Artists call each particular pose that they create for a given 3D model a key frame.

    6.4.2 Interpolation Approaches

    There are many types of interpolation. Two common forms for key-frame interpolation are linear interpolation and quadratic interpolation.

    I implement my mesh animation!

    first, I use my mesh deformation tool to generate (deformed)mesh(as key-frame)

    then make animation with key-frame interpolation and matlab tool.

    after, I will upload animation video. It may be possible that use ogre3d engine instead of matlab, I will try it.

  • 相关阅读:
    学习练习 java输入输出流 练习题1
    学习总结 java Iterator迭代器练习
    学习总结 java 输入输出流
    学习记录 java 哈希
    学习记录 java 链表知识
    学习总结 java 异常
    学习练习 java 集合
    web压缩gzip响应
    web乱码问题
    web附件中文名
  • 原文地址:https://www.cnblogs.com/europelee/p/3388664.html
Copyright © 2011-2022 走看看