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; // ww w. j a va 2s . c o m import android.graphics.Path; public interface IBrush { public void mouseDown(Path path, float x, float y); public void mouseMove(Path path, float x, float y); public void mouseUp(Path path, float x, float y); }