Ignore:
Timestamp:
2017-02-02T00:08:08+01:00 (9 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/ShapeElement.java

    r10787 r11525  
    8787
    8888    @Override
    89     void pick(Point2D point, boolean boundingBox, List retVec) throws SVGException
     89    void pick(Point2D point, boolean boundingBox, List<List<SVGElement>> retVec) throws SVGException
    9090    {
    9191//        StyleAttribute styleAttrib = new StyleAttribute();
     
    9898
    9999    @Override
    100     void pick(Rectangle2D pickArea, AffineTransform ltw, boolean boundingBox, List retVec) throws SVGException
    101     {
    102         StyleAttribute styleAttrib = new StyleAttribute();
     100    void pick(Rectangle2D pickArea, AffineTransform ltw, boolean boundingBox, List<List<SVGElement>> retVec) throws SVGException
     101    {
     102//        StyleAttribute styleAttrib = new StyleAttribute();
    103103//        if (getStyle(styleAttrib.setName("fill")) && getShape().contains(point))
    104104        if (ltw.createTransformedShape((boundingBox ? getBoundingBox() : getShape())).intersects(pickArea))
     
    397397            layout.layout(shape);
    398398           
    399             ArrayList list = layout.getMarkerList();
     399            ArrayList<MarkerPos> list = layout.getMarkerList();
    400400            for (int i = 0; i < list.size(); ++i)
    401401            {
    402                 MarkerPos pos = (MarkerPos)list.get(i);
     402                MarkerPos pos = list.get(i);
    403403
    404404                switch (pos.type)
Note: See TracChangeset for help on using the changeset viewer.