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.

  • 相关阅读:
    练习一
    Oracle删除一个库里面的所有表
    bat脚本中,@echo on与@echo off的使用
    bat命令之执行脚本后不退出窗口
    福清游玩
    MyEclipse快捷键
    过滤器与拦截器
    Anaconda-Jupyter的简单使用
    pycharm简单配置
    4、 vim&shell
  • 原文地址:https://www.cnblogs.com/europelee/p/3388664.html
Copyright © 2011-2022 走看看