/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* AndroidWorld Library, Copyright 2011 Bryan Chadwick *
* *
* FILE: ./android/image/OverlayXY.java *
* *
* This file is part of AndroidWorld. *
* *
* AndroidWorld is free software: you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation, either version *
* 3 of the License, or (at your option) any later version. *
* *
* AndroidWorld is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with AndroidWorld. If not, see
* new OverlayXY(new Rectangle(20, 20, "outline", "black"), * 20, 0, new Rectangle(20, 20, "outline", "black"))* *
* new OverlayXY(new Rectangle(20, 20, "solid", "red"), * 20, 20, * new Rectangle(20, 20, "solid", "black"))* *
* new OverlayXY(new Rectangle(20, 20, "solid", "red"), * -20, -20, * new Rectangle(20, 20, "solid", "black"))* *
* new OverlayXY( * new OverlayXY(new Ellipse(40, 40, "outline", "black"), * 10, 15, new Ellipse(10, 10, "solid", "forestgreen")), * 20, 15, new Ellipse(10, 10, "solid", "forestgreen"))* *
Image
s.
*
* * new Rectangle(20, 20, "outline", "black") * .overlayxy(new Rectangle(20, 20, "outline", "black"), 20, 0)* *
* new Rectangle(20, 20, "solid", "black") * .overlayxy(new Rectangle(20, 20, "solid", "red"), 20, 20)* *
* new Rectangle(20, 20, "solid", "black") * .overlayxy(new Rectangle(20, 20, "solid", "red"), -20, -20)* *
* new Ellipse(10, 10, "solid", "forestgreen") * .overlayxy(20, 15, new Ellipse(10, 10, "solid", "forestgreen") * .overlayxy(10, 15, new Ellipse(40, 40, "outline", "black"))* *