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 . ja v a 2 s .c o m*/ import android.graphics.Path; public class CircleBrush extends Brush { @Override public void mouseMove(Path path, float x, float y) { path.addCircle(x, y, 10, Path.Direction.CW); } }