Back to project page TweeningTextView.
The source code is released under:
Apache License
If you think the Android project TweeningTextView 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.kokalabs.svg; /* w ww. j a va2 s . com*/ public class PointD { public final double x; public final double y; public PointD(double x, double y) { this.x = x; this.y = y; } }