Changeset 18360 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2022-01-02T21:24:43+01:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/Shape.java
r18341 r18360 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.data.imagery; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 3 5 4 6 import java.awt.Polygon; … … 13 15 import org.openstreetmap.josm.data.coor.LatLon; 14 16 import org.openstreetmap.josm.tools.CheckParameterUtil; 15 16 import static org.openstreetmap.josm.tools.I18n.tr;17 17 18 18 /** … … 88 88 /** 89 89 * Check if the coordinates are inside this shape. 90 * @see Polygon#contains(int, int)91 90 * @param latlon The latlon to look for 92 91 * @return {@code true} if the LatLon is inside the shape. 92 * @see Polygon#contains(int, int) 93 93 */ 94 94 public boolean contains(LatLon latlon) {
Note:
See TracChangeset
for help on using the changeset viewer.