public Shape(Point topLeft, Point bottomRight) { mTopLeft = topLeft; mBottomRight = bottomRight; mBorder = new Border(); mFillPattern = new FillPattern(); mAngle = 0; }
public Shape() { mTopLeft = new Point(0, 0); mBottomRight = new Point(0, 0); mBorder = new Border(); mFillPattern = new FillPattern(); mAngle = 0; }
internal void setFillPattern(FillPattern fillPattern) { mForeground = fillPattern.mForeground; mBackground = fillPattern.mBackground; mBrushType = fillPattern.mBrushType; }
public FillPattern(FillPattern fillPattern) { this.fillPattern = fillPattern; }
public void setFillPattern(FillPattern fillPattern) { this.mFillPattern.setFillPattern(fillPattern); }