Ignore:
Timestamp:
2017-02-02T00:08:08+01:00 (8 years ago)
Author:
Don-vip
Message:

see #14319 - update to latest version of svgSalamander (2017-01-07, patched)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/kitfox/svg/ImageSVG.java

    r8084 r11525  
    7777    }
    7878
     79    @Override
    7980    public String getTagName()
    8081    {
     
    8283    }
    8384
     85    @Override
    8486    protected void build() throws SVGException
    8587    {
     
    185187    }
    186188
    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
    188191    {
    189192        if (getBoundingBox().contains(point))
     
    193196    }
    194197
    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
    196200    {
    197201        if (ltw.createTransformedShape(getBoundingBox()).intersects(pickArea))
     
    201205    }
    202206
     207    @Override
    203208    public void render(Graphics2D g) throws SVGException
    204209    {
     
    262267    }
    263268
     269    @Override
    264270    public Rectangle2D getBoundingBox()
    265271    {
     
    274280     * update
    275281     */
     282    @Override
    276283    public boolean updateTime(double curTime) throws SVGException
    277284    {
Note: See TracChangeset for help on using the changeset viewer.