Android中是否有类似append()之类的Path方法?

发布于 2024-11-25 05:21:47 字数 455 浏览 0 评论 0原文

我想将一行添加到路径中,但没有看到类似于 appened 的方法(在 Java 中会使用 GeneralPath.append(new Line2D.double) )< /em>

例如,在 Java 代码中我有类似的内容:

GeneralPath thePlots = new GeneralPath();
thePlots[CONST_INT].append(new Line2D.Double(centerX, centerY, xy[0], xy[1]), false);

//later I draw my line and whatever other points I have

但是,在 Android 中我没有看到附加选项(或 Line2D)。除了使用canvas.drawLine()然后绘制其余点之外,还有其他方法可以做到这一点吗?

I have a line that I would like to add to a Path but don't see a method similar to appened (in Java one would use GeneralPath.append(new Line2D.double) )

For instance, in Java code I have something like:

GeneralPath thePlots = new GeneralPath();
thePlots[CONST_INT].append(new Line2D.Double(centerX, centerY, xy[0], xy[1]), false);

//later I draw my line and whatever other points I have

However, in Android I don't see the option to append (or Line2D for that matter). Is there an alternative way of doing this rather than using canvas.drawLine() and then drawing the rest of the points?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心↖ 2024-12-02 05:21:47

您看过 Path 吗?

Have you looked at Path?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文