@Override
public void curveTo(double x1, double y1, double x2, double y2, double x3, double y3) {
ensureMoveTo();
innerTypesProperty().add(PathElementType.CURVE_TO);
final ReadOnlyListWrapper<Point2dfx> coords = innerCoordinatesProperty();
coords.add(getGeomFactory().newPoint(x1, y1));
coords.add(getGeomFactory().newPoint(x2, y2));
coords.add(getGeomFactory().newPoint(x3, y3));
}
Path2dfx.java 文件源码
java
阅读 40
收藏 0
点赞 0
评论 0
项目:afc
作者:
评论列表
文章目录