Back to project page Sketcher-Tab.
The source code is released under:
Apache License
If you think the Android project Sketcher-Tab 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 org.sketchertab; //w w w . ja va2s . com import android.graphics.Color; /** * Created by IntelliJ IDEA. * User: denis * Date: 9/26/11 * Time: 8:31 PM * To change this template use File | Settings | File Templates. */ public class BrushProperties { // public static final int DEFAULT_OPACITY = 50; // public static final float DEFAULT_WIDTH = 1; // public static final int DEFAULT_COLOR = Color.argb(DEFAULT_OPACITY, 0, 0, 0); // // public int opacity; // public float width; // public int color; // // public BrushProperties() { // opacity = DEFAULT_OPACITY; // width = DEFAULT_WIDTH; // color = DEFAULT_COLOR; // } }