Searched defs:Doodle (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
H A DDoodle.java31 * Doodle that consists of a color and doodling path for drawing.
33 public class Doodle implements Parcelable { class in inherits:Parcelable
51 public Doodle(int color, PointF startPoint) { method in class:Doodle
102 public static final Parcelable.Creator<Doodle> CREATOR = new Parcelable.Creator<Doodle>() {
105 public Doodle createFromParcel(Parcel source) {
109 Doodle doodle = new Doodle(color, (PointF) source.readParcelable(null));
115 return new Doodle(color, new PointF(0, 0));
119 public Doodle[] newArra
[all...]

Completed in 48 milliseconds