Changeset 14328 in josm for trunk/src/com/kitfox/svg/pathcmd


Ignore:
Timestamp:
2018-10-14T15:15:50+02:00 (6 years ago)
Author:
Don-vip
Message:

see #14319, see #16838 - update to svgSalamander 1.1.2

File:
1 edited

Legend:

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

    r11525 r14328  
    104104     * point of the arc.
    105105     *
     106     * @param path The path that the arc will be appended to.
     107     *
    106108     * @param rx the x radius of the ellipse
    107109     * @param ry the y radius of the ellipse
     
    160162     * AffineTransform.getRotateInstance
    161163     *     (angle, arc.getX()+arc.getWidth()/2, arc.getY()+arc.getHeight()/2);
     164     *
     165     * @param x0 origin of arc in x
     166     * @param y0 origin of arc in y
     167     * @param rx radius of arc in x
     168     * @param ry radius of arc in y
     169     * @param angle number of radians in arc
     170     * @param largeArcFlag
     171     * @param sweepFlag
     172     * @param x ending coordinate of arc in x
     173     * @param y ending coordinate of arc in y
     174     * @return arc shape
     175     *
    162176     */
    163177    public static Arc2D computeArc(double x0, double y0,
Note: See TracChangeset for help on using the changeset viewer.