微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Rebound Android的物理和动画库

程序名称:Rebound

授权协议: BSD

操作系统: Android

开发语言: Java

Rebound 介绍

温馨提示:该项目除了使用 BSD
协议授权外,还需遵守附加的专利授权

Rebound 是一个来自 Facebook 公司的 Android
的物理和动画库,我们相信对真实世界的物理建模是一个有力的方式,方便在应用中创建自然、可触的动画和交互效果

示例代码

    // Create a system to run the physics loop for a set of springs.
    SpringSystem springSystem = SpringSystem.create();

    // Add a spring to the system.
    Spring spring = springSystem.createSpring();

    // Add a listener to observe the motion of the spring.
    spring.addListener(new SimpleSpringListener() {

      @Override
      public void onspringUpdate(Spring spring) {
        // You can observe the updates in the spring 
        // state by asking its current value in onspringUpdate.
        float value = (float) spring.getCurrentValue();
        float scale = 1f - (value * 0.5f);
        myView.setScaleX(scale);
        myView.setScaleY(scale);
      }

    });

    // Set the spring in motion; moving from 0 to 1
    spring.setEndValue(1);

Rebound 官网

http://facebook.github.io/rebound/

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐