Changeset 8459 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-06-03T13:24:59+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Geometry.java
r8449 r8459 411 411 * @return segmentP1 if it is the closest point, segmentP2 if it is the closest point, 412 412 * a new point if closest point is between segmentP1 and segmentP2. 413 * @see #closestPointToLine 413 414 * @since 3650 414 * @see #closestPointToLine415 415 */ 416 416 public static EastNorth closestPointToSegment(EastNorth segmentP1, EastNorth segmentP2, EastNorth point) { -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r8443 r8459 381 381 * Set image width 382 382 * @param width final width of the image 383 * @return the current object, for convenience 383 384 * @see #setSize 384 * @return the current object, for convenience385 385 */ 386 386 public ImageProvider setWidth(int width) { … … 392 392 * Set image height 393 393 * @param height final height of the image 394 * @return the current object, for convenience 394 395 * @see #setSize 395 * @return the current object, for convenience396 396 */ 397 397 public ImageProvider setHeight(int height) { … … 1353 1353 * @throws IllegalArgumentException if <code>input</code> is <code>null</code>. 1354 1354 * @throws IOException if an error occurs during reading. 1355 * @see BufferedImage#getProperty 1355 1356 * @since 7132 1356 * @see BufferedImage#getProperty1357 1357 */ 1358 1358 public static BufferedImage read(File input, boolean readMetadata, boolean enforceTransparency) throws IOException {
Note:
See TracChangeset
for help on using the changeset viewer.