Changeset 1149 for trunk


Ignore:
Timestamp:
09/19/18 11:49:02 (6 years ago)
Author:
bln4
Message:

org.expeditee.core.bounds.AxisAlignedBoxBounds ->

Added toString() to AxisAlignedBoxBounds to help with debugging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/core/bounds/AxisAlignedBoxBounds.java

    r1142 r1149  
    365365                return new AxisAlignedBoxBounds(this);
    366366        }
     367       
     368        @Override
     369        public String toString() {
     370                return "AxisAlignedBoxBounds with (top left, bottom right): " + getTopLeft() + "," + getBottomRight();
     371        }
    367372
    368373}
Note: See TracChangeset for help on using the changeset viewer.