Back to project page stripepaper.
The source code is released under:
MIT License
If you think the Android project stripepaper listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tjm.stripepaper; /* ww w.j a va2s.co m*/ /** * Created by cymak on 7/9/14. */ public class Stripe { public float size; public int color; public float speed; public float x; public Stripe(float size, float x, int color, float speed) { this.size = size; this.x = x; this.color = color; this.speed = speed; } }