/android/LGame-Android-0.2.8/LGame-Android-0.2.8-update2/org/loon/framework/android/game/core/graphics/geom/Rectangle2D.java

http://loon-simple.googlecode.com/ · Java · 1005 lines · 302 code · 68 blank · 635 comment · 64 complexity · bb8a1dfc24ba36d6cae7bfdd491b0766 MD5 · raw file

  1. /*
  2. * Copyright 1997-2006 Sun Microsystems, Inc. All Rights Reserved.
  3. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  4. *
  5. * This code is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License version 2 only, as
  7. * published by the Free Software Foundation. Sun designates this
  8. * particular file as subject to the "Classpath" exception as provided
  9. * by Sun in the LICENSE file that accompanied this code.
  10. *
  11. * This code is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
  14. * version 2 for more details (a copy is included in the LICENSE file that
  15. * accompanied this code).
  16. *
  17. * You should have received a copy of the GNU General Public License version
  18. * 2 along with this work; if not, write to the Free Software Foundation,
  19. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20. *
  21. * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
  22. * CA 95054 USA or visit www.sun.com if you need additional information or
  23. * have any questions.
  24. */
  25. package org.loon.framework.android.game.core.graphics.geom;
  26. import java.io.Serializable;
  27. /**
  28. * The <code>Rectangle2D</code> class describes a rectangle defined by a
  29. * location {@code (x,y)} and dimension {@code (w x h)}.
  30. * <p>
  31. * This class is only the abstract superclass for all objects that store a 2D
  32. * rectangle. The actual storage representation of the coordinates is left to
  33. * the subclass.
  34. *
  35. * @author Jim Graham
  36. * @since 1.2
  37. */
  38. public abstract class Rectangle2D extends RectangularShape {
  39. /**
  40. * The bitmask that indicates that a point lies to the left of this
  41. * <code>Rectangle2D</code>.
  42. *
  43. * @since 1.2
  44. */
  45. public static final int OUT_LEFT = 1;
  46. /**
  47. * The bitmask that indicates that a point lies above this
  48. * <code>Rectangle2D</code>.
  49. *
  50. * @since 1.2
  51. */
  52. public static final int OUT_TOP = 2;
  53. /**
  54. * The bitmask that indicates that a point lies to the right of this
  55. * <code>Rectangle2D</code>.
  56. *
  57. * @since 1.2
  58. */
  59. public static final int OUT_RIGHT = 4;
  60. /**
  61. * The bitmask that indicates that a point lies below this
  62. * <code>Rectangle2D</code>.
  63. *
  64. * @since 1.2
  65. */
  66. public static final int OUT_BOTTOM = 8;
  67. /**
  68. * The <code>Float</code> class defines a rectangle specified in float
  69. * coordinates.
  70. *
  71. * @since 1.2
  72. */
  73. public static class Float extends Rectangle2D implements Serializable {
  74. /**
  75. * The X coordinate of this <code>Rectangle2D</code>.
  76. *
  77. * @since 1.2
  78. * @serial
  79. */
  80. public float x;
  81. /**
  82. * The Y coordinate of this <code>Rectangle2D</code>.
  83. *
  84. * @since 1.2
  85. * @serial
  86. */
  87. public float y;
  88. /**
  89. * The width of this <code>Rectangle2D</code>.
  90. *
  91. * @since 1.2
  92. * @serial
  93. */
  94. public float width;
  95. /**
  96. * The height of this <code>Rectangle2D</code>.
  97. *
  98. * @since 1.2
  99. * @serial
  100. */
  101. public float height;
  102. /**
  103. * Constructs a new <code>Rectangle2D</code>, initialized to location
  104. * (0.0,&nbsp;0.0) and size (0.0,&nbsp;0.0).
  105. *
  106. * @since 1.2
  107. */
  108. public Float() {
  109. }
  110. /**
  111. * Constructs and initializes a <code>Rectangle2D</code> from the
  112. * specified <code>float</code> coordinates.
  113. *
  114. * @param x
  115. * the X coordinate of the upper-left corner of the newly
  116. * constructed <code>Rectangle2D</code>
  117. * @param y
  118. * the Y coordinate of the upper-left corner of the newly
  119. * constructed <code>Rectangle2D</code>
  120. * @param w
  121. * the width of the newly constructed
  122. * <code>Rectangle2D</code>
  123. * @param h
  124. * the height of the newly constructed
  125. * <code>Rectangle2D</code>
  126. * @since 1.2
  127. */
  128. public Float(float x, float y, float w, float h) {
  129. setRect(x, y, w, h);
  130. }
  131. /**
  132. * {@inheritDoc}
  133. *
  134. * @since 1.2
  135. */
  136. public double getX() {
  137. return (double) x;
  138. }
  139. /**
  140. * {@inheritDoc}
  141. *
  142. * @since 1.2
  143. */
  144. public double getY() {
  145. return (double) y;
  146. }
  147. /**
  148. * {@inheritDoc}
  149. *
  150. * @since 1.2
  151. */
  152. public double getWidth() {
  153. return (double) width;
  154. }
  155. /**
  156. * {@inheritDoc}
  157. *
  158. * @since 1.2
  159. */
  160. public double getHeight() {
  161. return (double) height;
  162. }
  163. /**
  164. * {@inheritDoc}
  165. *
  166. * @since 1.2
  167. */
  168. public boolean isEmpty() {
  169. return (width <= 0.0f) || (height <= 0.0f);
  170. }
  171. /**
  172. * Sets the location and size of this <code>Rectangle2D</code> to the
  173. * specified <code>float</code> values.
  174. *
  175. * @param x
  176. * the X coordinate of the upper-left corner of this
  177. * <code>Rectangle2D</code>
  178. * @param y
  179. * the Y coordinate of the upper-left corner of this
  180. * <code>Rectangle2D</code>
  181. * @param w
  182. * the width of this <code>Rectangle2D</code>
  183. * @param h
  184. * the height of this <code>Rectangle2D</code>
  185. * @since 1.2
  186. */
  187. public void setRect(float x, float y, float w, float h) {
  188. this.x = x;
  189. this.y = y;
  190. this.width = w;
  191. this.height = h;
  192. }
  193. /**
  194. * {@inheritDoc}
  195. *
  196. * @since 1.2
  197. */
  198. public void setRect(double x, double y, double w, double h) {
  199. this.x = (float) x;
  200. this.y = (float) y;
  201. this.width = (float) w;
  202. this.height = (float) h;
  203. }
  204. /**
  205. * {@inheritDoc}
  206. *
  207. * @since 1.2
  208. */
  209. public void setRect(Rectangle2D r) {
  210. this.x = (float) r.getX();
  211. this.y = (float) r.getY();
  212. this.width = (float) r.getWidth();
  213. this.height = (float) r.getHeight();
  214. }
  215. /**
  216. * {@inheritDoc}
  217. *
  218. * @since 1.2
  219. */
  220. public int outcode(double x, double y) {
  221. /*
  222. * Note on casts to double below. If the arithmetic of x+w or y+h is
  223. * done in float, then some bits may be lost if the binary exponents
  224. * of x/y and w/h are not similar. By converting to double before
  225. * the addition we force the addition to be carried out in double to
  226. * avoid rounding error in the comparison.
  227. *
  228. * See bug 4320890 for problems that this inaccuracy causes.
  229. */
  230. int out = 0;
  231. if (this.width <= 0) {
  232. out |= OUT_LEFT | OUT_RIGHT;
  233. } else if (x < this.x) {
  234. out |= OUT_LEFT;
  235. } else if (x > this.x + (double) this.width) {
  236. out |= OUT_RIGHT;
  237. }
  238. if (this.height <= 0) {
  239. out |= OUT_TOP | OUT_BOTTOM;
  240. } else if (y < this.y) {
  241. out |= OUT_TOP;
  242. } else if (y > this.y + (double) this.height) {
  243. out |= OUT_BOTTOM;
  244. }
  245. return out;
  246. }
  247. /**
  248. * {@inheritDoc}
  249. *
  250. * @since 1.2
  251. */
  252. public Rectangle2D getBounds2D() {
  253. return new Float(x, y, width, height);
  254. }
  255. /**
  256. * {@inheritDoc}
  257. *
  258. * @since 1.2
  259. */
  260. public Rectangle2D createIntersection(Rectangle2D r) {
  261. Rectangle2D dest;
  262. if (r instanceof Float) {
  263. dest = new Rectangle2D.Float();
  264. } else {
  265. dest = new Rectangle2D.Double();
  266. }
  267. Rectangle2D.intersect(this, r, dest);
  268. return dest;
  269. }
  270. /**
  271. * {@inheritDoc}
  272. *
  273. * @since 1.2
  274. */
  275. public Rectangle2D createUnion(Rectangle2D r) {
  276. Rectangle2D dest;
  277. if (r instanceof Float) {
  278. dest = new Rectangle2D.Float();
  279. } else {
  280. dest = new Rectangle2D.Double();
  281. }
  282. Rectangle2D.union(this, r, dest);
  283. return dest;
  284. }
  285. /**
  286. * Returns the <code>String</code> representation of this
  287. * <code>Rectangle2D</code>.
  288. *
  289. * @return a <code>String</code> representing this
  290. * <code>Rectangle2D</code>.
  291. * @since 1.2
  292. */
  293. public String toString() {
  294. return getClass().getName() + "[x=" + x + ",y=" + y + ",w=" + width
  295. + ",h=" + height + "]";
  296. }
  297. /*
  298. * JDK 1.6 serialVersionUID
  299. */
  300. private static final long serialVersionUID = 3798716824173675777L;
  301. }
  302. /**
  303. * The <code>Double</code> class defines a rectangle specified in double
  304. * coordinates.
  305. *
  306. * @since 1.2
  307. */
  308. public static class Double extends Rectangle2D implements Serializable {
  309. /**
  310. * The X coordinate of this <code>Rectangle2D</code>.
  311. *
  312. * @since 1.2
  313. * @serial
  314. */
  315. public double x;
  316. /**
  317. * The Y coordinate of this <code>Rectangle2D</code>.
  318. *
  319. * @since 1.2
  320. * @serial
  321. */
  322. public double y;
  323. /**
  324. * The width of this <code>Rectangle2D</code>.
  325. *
  326. * @since 1.2
  327. * @serial
  328. */
  329. public double width;
  330. /**
  331. * The height of this <code>Rectangle2D</code>.
  332. *
  333. * @since 1.2
  334. * @serial
  335. */
  336. public double height;
  337. /**
  338. * Constructs a new <code>Rectangle2D</code>, initialized to location
  339. * (0,&nbsp;0) and size (0,&nbsp;0).
  340. *
  341. * @since 1.2
  342. */
  343. public Double() {
  344. }
  345. /**
  346. * Constructs and initializes a <code>Rectangle2D</code> from the
  347. * specified <code>double</code> coordinates.
  348. *
  349. * @param x
  350. * the X coordinate of the upper-left corner of the newly
  351. * constructed <code>Rectangle2D</code>
  352. * @param y
  353. * the Y coordinate of the upper-left corner of the newly
  354. * constructed <code>Rectangle2D</code>
  355. * @param w
  356. * the width of the newly constructed
  357. * <code>Rectangle2D</code>
  358. * @param h
  359. * the height of the newly constructed
  360. * <code>Rectangle2D</code>
  361. * @since 1.2
  362. */
  363. public Double(double x, double y, double w, double h) {
  364. setRect(x, y, w, h);
  365. }
  366. /**
  367. * {@inheritDoc}
  368. *
  369. * @since 1.2
  370. */
  371. public double getX() {
  372. return x;
  373. }
  374. /**
  375. * {@inheritDoc}
  376. *
  377. * @since 1.2
  378. */
  379. public double getY() {
  380. return y;
  381. }
  382. /**
  383. * {@inheritDoc}
  384. *
  385. * @since 1.2
  386. */
  387. public double getWidth() {
  388. return width;
  389. }
  390. /**
  391. * {@inheritDoc}
  392. *
  393. * @since 1.2
  394. */
  395. public double getHeight() {
  396. return height;
  397. }
  398. /**
  399. * {@inheritDoc}
  400. *
  401. * @since 1.2
  402. */
  403. public boolean isEmpty() {
  404. return (width <= 0.0) || (height <= 0.0);
  405. }
  406. /**
  407. * {@inheritDoc}
  408. *
  409. * @since 1.2
  410. */
  411. public void setRect(double x, double y, double w, double h) {
  412. this.x = x;
  413. this.y = y;
  414. this.width = w;
  415. this.height = h;
  416. }
  417. /**
  418. * {@inheritDoc}
  419. *
  420. * @since 1.2
  421. */
  422. public void setRect(Rectangle2D r) {
  423. this.x = r.getX();
  424. this.y = r.getY();
  425. this.width = r.getWidth();
  426. this.height = r.getHeight();
  427. }
  428. /**
  429. * {@inheritDoc}
  430. *
  431. * @since 1.2
  432. */
  433. public int outcode(double x, double y) {
  434. int out = 0;
  435. if (this.width <= 0) {
  436. out |= OUT_LEFT | OUT_RIGHT;
  437. } else if (x < this.x) {
  438. out |= OUT_LEFT;
  439. } else if (x > this.x + this.width) {
  440. out |= OUT_RIGHT;
  441. }
  442. if (this.height <= 0) {
  443. out |= OUT_TOP | OUT_BOTTOM;
  444. } else if (y < this.y) {
  445. out |= OUT_TOP;
  446. } else if (y > this.y + this.height) {
  447. out |= OUT_BOTTOM;
  448. }
  449. return out;
  450. }
  451. /**
  452. * {@inheritDoc}
  453. *
  454. * @since 1.2
  455. */
  456. public Rectangle2D getBounds2D() {
  457. return new Double(x, y, width, height);
  458. }
  459. /**
  460. * {@inheritDoc}
  461. *
  462. * @since 1.2
  463. */
  464. public Rectangle2D createIntersection(Rectangle2D r) {
  465. Rectangle2D dest = new Rectangle2D.Double();
  466. Rectangle2D.intersect(this, r, dest);
  467. return dest;
  468. }
  469. /**
  470. * {@inheritDoc}
  471. *
  472. * @since 1.2
  473. */
  474. public Rectangle2D createUnion(Rectangle2D r) {
  475. Rectangle2D dest = new Rectangle2D.Double();
  476. Rectangle2D.union(this, r, dest);
  477. return dest;
  478. }
  479. /**
  480. * Returns the <code>String</code> representation of this
  481. * <code>Rectangle2D</code>.
  482. *
  483. * @return a <code>String</code> representing this
  484. * <code>Rectangle2D</code>.
  485. * @since 1.2
  486. */
  487. public String toString() {
  488. return getClass().getName() + "[x=" + x + ",y=" + y + ",w=" + width
  489. + ",h=" + height + "]";
  490. }
  491. /*
  492. * JDK 1.6 serialVersionUID
  493. */
  494. private static final long serialVersionUID = 7771313791441850493L;
  495. }
  496. /**
  497. * This is an abstract class that cannot be instantiated directly.
  498. * Type-specific implementation subclasses are available for instantiation
  499. * and provide a number of formats for storing the information necessary to
  500. * satisfy the various accessor methods below.
  501. *
  502. * @see and.awt.geom.Rectangle2D.Float
  503. * @see and.awt.geom.Rectangle2D.Double
  504. * @see net.pbdavey.awt.Rectangle
  505. * @since 1.2
  506. */
  507. protected Rectangle2D() {
  508. }
  509. /**
  510. * Sets the location and size of this <code>Rectangle2D</code> to the
  511. * specified <code>double</code> values.
  512. *
  513. * @param x
  514. * the X coordinate of the upper-left corner of this
  515. * <code>Rectangle2D</code>
  516. * @param y
  517. * the Y coordinate of the upper-left corner of this
  518. * <code>Rectangle2D</code>
  519. * @param w
  520. * the width of this <code>Rectangle2D</code>
  521. * @param h
  522. * the height of this <code>Rectangle2D</code>
  523. * @since 1.2
  524. */
  525. public abstract void setRect(double x, double y, double w, double h);
  526. /**
  527. * Sets this <code>Rectangle2D</code> to be the same as the specified
  528. * <code>Rectangle2D</code>.
  529. *
  530. * @param r
  531. * the specified <code>Rectangle2D</code>
  532. * @since 1.2
  533. */
  534. public void setRect(Rectangle2D r) {
  535. setRect(r.getX(), r.getY(), r.getWidth(), r.getHeight());
  536. }
  537. /**
  538. * Tests if the specified line segment intersects the interior of this
  539. * <code>Rectangle2D</code>.
  540. *
  541. * @param x1
  542. * the X coordinate of the start point of the specified line
  543. * segment
  544. * @param y1
  545. * the Y coordinate of the start point of the specified line
  546. * segment
  547. * @param x2
  548. * the X coordinate of the end point of the specified line
  549. * segment
  550. * @param y2
  551. * the Y coordinate of the end point of the specified line
  552. * segment
  553. * @return <code>true</code> if the specified line segment intersects the
  554. * interior of this <code>Rectangle2D</code>; <code>false</code>
  555. * otherwise.
  556. * @since 1.2
  557. */
  558. public boolean intersectsLine(double x1, double y1, double x2, double y2) {
  559. int out1, out2;
  560. if ((out2 = outcode(x2, y2)) == 0) {
  561. return true;
  562. }
  563. while ((out1 = outcode(x1, y1)) != 0) {
  564. if ((out1 & out2) != 0) {
  565. return false;
  566. }
  567. if ((out1 & (OUT_LEFT | OUT_RIGHT)) != 0) {
  568. double x = getX();
  569. if ((out1 & OUT_RIGHT) != 0) {
  570. x += getWidth();
  571. }
  572. y1 = y1 + (x - x1) * (y2 - y1) / (x2 - x1);
  573. x1 = x;
  574. } else {
  575. double y = getY();
  576. if ((out1 & OUT_BOTTOM) != 0) {
  577. y += getHeight();
  578. }
  579. x1 = x1 + (y - y1) * (x2 - x1) / (y2 - y1);
  580. y1 = y;
  581. }
  582. }
  583. return true;
  584. }
  585. /**
  586. * Tests if the specified line segment intersects the interior of this
  587. * <code>Rectangle2D</code>.
  588. *
  589. * @param l
  590. * the specified {@link Line2D} to test for intersection with the
  591. * interior of this <code>Rectangle2D</code>
  592. * @return <code>true</code> if the specified <code>Line2D</code> intersects
  593. * the interior of this <code>Rectangle2D</code>; <code>false</code>
  594. * otherwise.
  595. * @since 1.2
  596. */
  597. public boolean intersectsLine(Line2D l) {
  598. return intersectsLine(l.getX1(), l.getY1(), l.getX2(), l.getY2());
  599. }
  600. /**
  601. * Determines where the specified coordinates lie with respect to this
  602. * <code>Rectangle2D</code>. This method computes a binary OR of the
  603. * appropriate mask values indicating, for each side of this
  604. * <code>Rectangle2D</code>, whether or not the specified coordinates are on
  605. * the same side of the edge as the rest of this <code>Rectangle2D</code>.
  606. *
  607. * @param x
  608. * the specified X coordinate
  609. * @param y
  610. * the specified Y coordinate
  611. * @return the logical OR of all appropriate out codes.
  612. * @see #OUT_LEFT
  613. * @see #OUT_TOP
  614. * @see #OUT_RIGHT
  615. * @see #OUT_BOTTOM
  616. * @since 1.2
  617. */
  618. public abstract int outcode(double x, double y);
  619. /**
  620. * Determines where the specified {@link Point2D} lies with respect to this
  621. * <code>Rectangle2D</code>. This method computes a binary OR of the
  622. * appropriate mask values indicating, for each side of this
  623. * <code>Rectangle2D</code>, whether or not the specified
  624. * <code>Point2D</code> is on the same side of the edge as the rest of this
  625. * <code>Rectangle2D</code>.
  626. *
  627. * @param p
  628. * the specified <code>Point2D</code>
  629. * @return the logical OR of all appropriate out codes.
  630. * @see #OUT_LEFT
  631. * @see #OUT_TOP
  632. * @see #OUT_RIGHT
  633. * @see #OUT_BOTTOM
  634. * @since 1.2
  635. */
  636. public int outcode(Point2D p) {
  637. return outcode(p.getX(), p.getY());
  638. }
  639. /**
  640. * Sets the location and size of the outer bounds of this
  641. * <code>Rectangle2D</code> to the specified rectangular values.
  642. *
  643. * @param x
  644. * the X coordinate of the upper-left corner of this
  645. * <code>Rectangle2D</code>
  646. * @param y
  647. * the Y coordinate of the upper-left corner of this
  648. * <code>Rectangle2D</code>
  649. * @param w
  650. * the width of this <code>Rectangle2D</code>
  651. * @param h
  652. * the height of this <code>Rectangle2D</code>
  653. * @since 1.2
  654. */
  655. public void setFrame(double x, double y, double w, double h) {
  656. setRect(x, y, w, h);
  657. }
  658. /**
  659. * {@inheritDoc}
  660. *
  661. * @since 1.2
  662. */
  663. public Rectangle2D getBounds2D() {
  664. return (Rectangle2D) clone();
  665. }
  666. /**
  667. * {@inheritDoc}
  668. *
  669. * @since 1.2
  670. */
  671. public boolean contains(double x, double y) {
  672. double x0 = getX();
  673. double y0 = getY();
  674. return (x >= x0 && y >= y0 && x < x0 + getWidth() && y < y0
  675. + getHeight());
  676. }
  677. /**
  678. * {@inheritDoc}
  679. *
  680. * @since 1.2
  681. */
  682. public boolean intersects(double x, double y, double w, double h) {
  683. if (isEmpty() || w <= 0 || h <= 0) {
  684. return false;
  685. }
  686. double x0 = getX();
  687. double y0 = getY();
  688. return (x + w > x0 && y + h > y0 && x < x0 + getWidth() && y < y0
  689. + getHeight());
  690. }
  691. /**
  692. * {@inheritDoc}
  693. *
  694. * @since 1.2
  695. */
  696. public boolean contains(double x, double y, double w, double h) {
  697. if (isEmpty() || w <= 0 || h <= 0) {
  698. return false;
  699. }
  700. double x0 = getX();
  701. double y0 = getY();
  702. return (x >= x0 && y >= y0 && (x + w) <= x0 + getWidth() && (y + h) <= y0
  703. + getHeight());
  704. }
  705. /**
  706. * Returns a new <code>Rectangle2D</code> object representing the
  707. * intersection of this <code>Rectangle2D</code> with the specified
  708. * <code>Rectangle2D</code>.
  709. *
  710. * @param r
  711. * the <code>Rectangle2D</code> to be intersected with this
  712. * <code>Rectangle2D</code>
  713. * @return the largest <code>Rectangle2D</code> contained in both the
  714. * specified <code>Rectangle2D</code> and in this
  715. * <code>Rectangle2D</code>.
  716. * @since 1.2
  717. */
  718. public abstract Rectangle2D createIntersection(Rectangle2D r);
  719. /**
  720. * Intersects the pair of specified source <code>Rectangle2D</code> objects
  721. * and puts the result into the specified destination
  722. * <code>Rectangle2D</code> object. One of the source rectangles can also be
  723. * the destination to avoid creating a third Rectangle2D object, but in this
  724. * case the original points of this source rectangle will be overwritten by
  725. * this method.
  726. *
  727. * @param src1
  728. * the first of a pair of <code>Rectangle2D</code> objects to be
  729. * intersected with each other
  730. * @param src2
  731. * the second of a pair of <code>Rectangle2D</code> objects to be
  732. * intersected with each other
  733. * @param dest
  734. * the <code>Rectangle2D</code> that holds the results of the
  735. * intersection of <code>src1</code> and <code>src2</code>
  736. * @since 1.2
  737. */
  738. public static void intersect(Rectangle2D src1, Rectangle2D src2,
  739. Rectangle2D dest) {
  740. double x1 = Math.max(src1.getMinX(), src2.getMinX());
  741. double y1 = Math.max(src1.getMinY(), src2.getMinY());
  742. double x2 = Math.min(src1.getMaxX(), src2.getMaxX());
  743. double y2 = Math.min(src1.getMaxY(), src2.getMaxY());
  744. dest.setFrame(x1, y1, x2 - x1, y2 - y1);
  745. }
  746. /**
  747. * Returns a new <code>Rectangle2D</code> object representing the union of
  748. * this <code>Rectangle2D</code> with the specified <code>Rectangle2D</code>
  749. * .
  750. *
  751. * @param r
  752. * the <code>Rectangle2D</code> to be combined with this
  753. * <code>Rectangle2D</code>
  754. * @return the smallest <code>Rectangle2D</code> containing both the
  755. * specified <code>Rectangle2D</code> and this
  756. * <code>Rectangle2D</code>.
  757. * @since 1.2
  758. */
  759. public abstract Rectangle2D createUnion(Rectangle2D r);
  760. /**
  761. * Unions the pair of source <code>Rectangle2D</code> objects and puts the
  762. * result into the specified destination <code>Rectangle2D</code> object.
  763. * One of the source rectangles can also be the destination to avoid
  764. * creating a third Rectangle2D object, but in this case the original points
  765. * of this source rectangle will be overwritten by this method.
  766. *
  767. * @param src1
  768. * the first of a pair of <code>Rectangle2D</code> objects to be
  769. * combined with each other
  770. * @param src2
  771. * the second of a pair of <code>Rectangle2D</code> objects to be
  772. * combined with each other
  773. * @param dest
  774. * the <code>Rectangle2D</code> that holds the results of the
  775. * union of <code>src1</code> and <code>src2</code>
  776. * @since 1.2
  777. */
  778. public static void union(Rectangle2D src1, Rectangle2D src2,
  779. Rectangle2D dest) {
  780. double x1 = Math.min(src1.getMinX(), src2.getMinX());
  781. double y1 = Math.min(src1.getMinY(), src2.getMinY());
  782. double x2 = Math.max(src1.getMaxX(), src2.getMaxX());
  783. double y2 = Math.max(src1.getMaxY(), src2.getMaxY());
  784. dest.setFrameFromDiagonal(x1, y1, x2, y2);
  785. }
  786. /**
  787. * Adds a point, specified by the double precision arguments
  788. * <code>newx</code> and <code>newy</code>, to this <code>Rectangle2D</code>
  789. * . The resulting <code>Rectangle2D</code> is the smallest
  790. * <code>Rectangle2D</code> that contains both the original
  791. * <code>Rectangle2D</code> and the specified point.
  792. * <p>
  793. * After adding a point, a call to <code>contains</code> with the added
  794. * point as an argument does not necessarily return <code>true</code>. The
  795. * <code>contains</code> method does not return <code>true</code> for points
  796. * on the right or bottom edges of a rectangle. Therefore, if the added
  797. * point falls on the left or bottom edge of the enlarged rectangle,
  798. * <code>contains</code> returns <code>false</code> for that point.
  799. *
  800. * @param newx
  801. * the X coordinate of the new point
  802. * @param newy
  803. * the Y coordinate of the new point
  804. * @since 1.2
  805. */
  806. public void add(double newx, double newy) {
  807. double x1 = Math.min(getMinX(), newx);
  808. double x2 = Math.max(getMaxX(), newx);
  809. double y1 = Math.min(getMinY(), newy);
  810. double y2 = Math.max(getMaxY(), newy);
  811. setRect(x1, y1, x2 - x1, y2 - y1);
  812. }
  813. /**
  814. * Adds the <code>Point2D</code> object <code>pt</code> to this
  815. * <code>Rectangle2D</code>. The resulting <code>Rectangle2D</code> is the
  816. * smallest <code>Rectangle2D</code> that contains both the original
  817. * <code>Rectangle2D</code> and the specified <code>Point2D</code>.
  818. * <p>
  819. * After adding a point, a call to <code>contains</code> with the added
  820. * point as an argument does not necessarily return <code>true</code>. The
  821. * <code>contains</code> method does not return <code>true</code> for points
  822. * on the right or bottom edges of a rectangle. Therefore, if the added
  823. * point falls on the left or bottom edge of the enlarged rectangle,
  824. * <code>contains</code> returns <code>false</code> for that point.
  825. *
  826. * @param pt
  827. * the new <code>Point2D</code> to add to this
  828. * <code>Rectangle2D</code>.
  829. * @since 1.2
  830. */
  831. public void add(Point2D pt) {
  832. add(pt.getX(), pt.getY());
  833. }
  834. /**
  835. * Adds a <code>Rectangle2D</code> object to this <code>Rectangle2D</code>.
  836. * The resulting <code>Rectangle2D</code> is the union of the two
  837. * <code>Rectangle2D</code> objects.
  838. *
  839. * @param r
  840. * the <code>Rectangle2D</code> to add to this
  841. * <code>Rectangle2D</code>.
  842. * @since 1.2
  843. */
  844. public void add(Rectangle2D r) {
  845. double x1 = Math.min(getMinX(), r.getMinX());
  846. double x2 = Math.max(getMaxX(), r.getMaxX());
  847. double y1 = Math.min(getMinY(), r.getMinY());
  848. double y2 = Math.max(getMaxY(), r.getMaxY());
  849. setRect(x1, y1, x2 - x1, y2 - y1);
  850. }
  851. /**
  852. * Returns an iteration object that defines the boundary of this
  853. * <code>Rectangle2D</code>. The iterator for this class is multi-threaded
  854. * safe, which means that this <code>Rectangle2D</code> class guarantees
  855. * that modifications to the geometry of this <code>Rectangle2D</code>
  856. * object do not affect any iterations of that geometry that are already in
  857. * process.
  858. *
  859. * @param at
  860. * an optional <code>AffineTransform</code> to be applied to the
  861. * coordinates as they are returned in the iteration, or
  862. * <code>null</code> if untransformed coordinates are desired
  863. * @return the <code>PathIterator</code> object that returns the geometry of
  864. * the outline of this <code>Rectangle2D</code>, one segment at a
  865. * time.
  866. * @since 1.2
  867. */
  868. public PathIterator getPathIterator(AffineTransform at) {
  869. return new RectIterator(this, at);
  870. }
  871. /**
  872. * Returns an iteration object that defines the boundary of the flattened
  873. * <code>Rectangle2D</code>. Since rectangles are already flat, the
  874. * <code>flatness</code> parameter is ignored. The iterator for this class
  875. * is multi-threaded safe, which means that this <code>Rectangle2D</code>
  876. * class guarantees that modifications to the geometry of this
  877. * <code>Rectangle2D</code> object do not affect any iterations of that
  878. * geometry that are already in process.
  879. *
  880. * @param at
  881. * an optional <code>AffineTransform</code> to be applied to the
  882. * coordinates as they are returned in the iteration, or
  883. * <code>null</code> if untransformed coordinates are desired
  884. * @param flatness
  885. * the maximum distance that the line segments used to
  886. * approximate the curved segments are allowed to deviate from
  887. * any point on the original curve. Since rectangles are already
  888. * flat, the <code>flatness</code> parameter is ignored.
  889. * @return the <code>PathIterator</code> object that returns the geometry of
  890. * the outline of this <code>Rectangle2D</code>, one segment at a
  891. * time.
  892. * @since 1.2
  893. */
  894. public PathIterator getPathIterator(AffineTransform at, double flatness) {
  895. return new RectIterator(this, at);
  896. }
  897. /**
  898. * Returns the hashcode for this <code>Rectangle2D</code>.
  899. *
  900. * @return the hashcode for this <code>Rectangle2D</code>.
  901. * @since 1.2
  902. */
  903. public int hashCode() {
  904. long bits = java.lang.Double.doubleToLongBits(getX());
  905. bits += java.lang.Double.doubleToLongBits(getY()) * 37;
  906. bits += java.lang.Double.doubleToLongBits(getWidth()) * 43;
  907. bits += java.lang.Double.doubleToLongBits(getHeight()) * 47;
  908. return (((int) bits) ^ ((int) (bits >> 32)));
  909. }
  910. /**
  911. * Determines whether or not the specified <code>Object</code> is equal to
  912. * this <code>Rectangle2D</code>. The specified <code>Object</code> is equal
  913. * to this <code>Rectangle2D</code> if it is an instance of
  914. * <code>Rectangle2D</code> and if its location and size are the same as
  915. * this <code>Rectangle2D</code>.
  916. *
  917. * @param obj
  918. * an <code>Object</code> to be compared with this
  919. * <code>Rectangle2D</code>.
  920. * @return <code>true</code> if <code>obj</code> is an instance of
  921. * <code>Rectangle2D</code> and has the same values;
  922. * <code>false</code> otherwise.
  923. * @since 1.2
  924. */
  925. public boolean equals(Object obj) {
  926. if (obj == this) {
  927. return true;
  928. }
  929. if (obj instanceof Rectangle2D) {
  930. Rectangle2D r2d = (Rectangle2D) obj;
  931. return ((getX() == r2d.getX()) && (getY() == r2d.getY())
  932. && (getWidth() == r2d.getWidth()) && (getHeight() == r2d
  933. .getHeight()));
  934. }
  935. return false;
  936. }
  937. }