Changeset 11525 in josm for trunk/src/com/kitfox/svg/ImageSVG.java
- Timestamp:
- 2017-02-02T00:08:08+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/ImageSVG.java
r8084 r11525 77 77 } 78 78 79 @Override 79 80 public String getTagName() 80 81 { … … 82 83 } 83 84 85 @Override 84 86 protected void build() throws SVGException 85 87 { … … 185 187 } 186 188 187 void pick(Point2D point, boolean boundingBox, List retVec) throws SVGException 189 @Override 190 void pick(Point2D point, boolean boundingBox, List<List<SVGElement>> retVec) throws SVGException 188 191 { 189 192 if (getBoundingBox().contains(point)) … … 193 196 } 194 197 195 void pick(Rectangle2D pickArea, AffineTransform ltw, boolean boundingBox, List retVec) throws SVGException 198 @Override 199 void pick(Rectangle2D pickArea, AffineTransform ltw, boolean boundingBox, List<List<SVGElement>> retVec) throws SVGException 196 200 { 197 201 if (ltw.createTransformedShape(getBoundingBox()).intersects(pickArea)) … … 201 205 } 202 206 207 @Override 203 208 public void render(Graphics2D g) throws SVGException 204 209 { … … 262 267 } 263 268 269 @Override 264 270 public Rectangle2D getBoundingBox() 265 271 { … … 274 280 * update 275 281 */ 282 @Override 276 283 public boolean updateTime(double curTime) throws SVGException 277 284 {
Note:
See TracChangeset
for help on using the changeset viewer.