Back to project page E-Paper.
The source code is released under:
GNU General Public License
If you think the Android project E-Paper 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.epaper.brush; /*w w w .j av a 2 s . co m*/ import android.graphics.Path; public abstract class Brush implements IBrush { protected static float EPS = 1E-6f; public void mouseDown(Path path, float x, float y) { //To change body of implemented methods use File | Settings | File Templates. } public void mouseMove(Path path, float x, float y) { //To change body of implemented methods use File | Settings | File Templates. } public void mouseUp(Path path, float x, float y) { //To change body of implemented methods use File | Settings | File Templates. } }