Back to project page unknown-pleasures.
The source code is released under:
Creative Commons Attribution NonCommercial NoDerivs (CC-NC-ND) THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTE...
If you think the Android project unknown-pleasures listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/** * Animator.java//from w w w . j a v a 2s . c o m * Author: marek.brodziak@gmail.com * Created: May 6, 2014 * Copyright 2014 by miniti */ package pl.miniti.android.pleasures.animation; import android.graphics.Path; /** * Common interface for the animation providers */ public interface Animator { /** * @param line * line number * @param of * number of lines * @return path displayed in the given line */ Path of(int line, int of); /** * Notify the animator that rendering of a frame has been completed */ void frame(); }