Changeset 14328 in josm for trunk/src/com/kitfox/svg/pathcmd
- Timestamp:
- 2018-10-14T15:15:50+02:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/com/kitfox/svg/pathcmd/Arc.java
r11525 r14328 104 104 * point of the arc. 105 105 * 106 * @param path The path that the arc will be appended to. 107 * 106 108 * @param rx the x radius of the ellipse 107 109 * @param ry the y radius of the ellipse … … 160 162 * AffineTransform.getRotateInstance 161 163 * (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 * 162 176 */ 163 177 public static Arc2D computeArc(double x0, double y0,
Note:
See TracChangeset
for help on using the changeset viewer.