有没有类似“锚”之类的东西? (javax.microedition.lcdui.Graphics)在java.awt.Graphics中?

发布于 2024-11-18 04:10:11 字数 74 浏览 2 评论 0原文

需要为 JavaSE 重写 JavaME 应用程序。 (源代码不是我的) 有使用锚点的“draw*”方法,但是我如何在awt中实现它?

Need to rewrite JavaME application for JavaSE. (source code is not mine)
There are "draw*" methods using anchors, but how can I implement this in awt?

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

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

发布评论

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

评论(1

下壹個目標 2024-11-25 04:10:11

这取决于您对哪种锚点感兴趣。如果您只想使用三行来做这样的事情,

public void paintAnchor( Point start, Point end, Graphics g ) {
  g.drawLine( start.x, start.y, end.x, end.y);
  g.drawLine( end.x - ( end.x / 10 ), end.y - 5, end.x, end.y );
  g.drawLine( end.x - ( end.x / 10 ), end.y + 5, end.x, end.y );
}

这是我能想到的最简单的方法。您会发现它只适用于水平锚点。所以你要做的是,你必须针对不同的角度、可能不同的厚度以及坐标系的每个象限来实现它。

另一种方法是选择带有锚点的特定字体并绘制它们。所以这取决于你想做什么。

真挚地

it depends on what kind of anchors your are interested in. If your are wanna just use three lines do something like this

public void paintAnchor( Point start, Point end, Graphics g ) {
  g.drawLine( start.x, start.y, end.x, end.y);
  g.drawLine( end.x - ( end.x / 10 ), end.y - 5, end.x, end.y );
  g.drawLine( end.x - ( end.x / 10 ), end.y + 5, end.x, end.y );
}

this ist the simplest approach i can think about. And you will see it will only work good for a horizontal anchor. So what you have to do is, you have to implement it for different angles, maybe different thicknesses and for each quadrant of the coordinate system.

An alternative could be to select a specific font with anchors and just paint them. So it depends on what you trying to do.

sincerely

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