是否可以更改 GWT Canvas 中的旋转中心?

发布于 2024-12-08 06:44:33 字数 118 浏览 0 评论 0原文

我需要在画布上绘制旋转的矩形。 我有左上角矩形角的 x 和 y 以及围绕该角的旋转角度。 如果我使用 context.rotate() 函数,它将围绕 (0,0) 旋转画布。 是否可以在 GWT 上围绕自定义中心旋转画布?

I need to draw rotated rectangle on Canvas.
I have x and y of top left rectangle corner and angle of rotation around that corner.
If I use context.rotate() function it will rotate canvas around (0,0).
Is it possible to rotate canvas around custom center on GWT?

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

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

发布评论

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

评论(1

ゝ偶尔ゞ 2024-12-15 06:44:33

是的,首先使用context.translate来改变原点,从而改变旋转的“中心”。 (因为所有旋转都是围绕原点完成的)。通常,您之后会想要翻译回相同的金额。

Yes, use context.translate first to change the origin, thus changing the "center" of rotation. (since all rotation is done about the origin). Typically you'll want to translate back the same amount afterwards.

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