是否可以更改 GWT Canvas 中的旋转中心?
我需要在画布上绘制旋转的矩形。 我有左上角矩形角的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,首先使用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 totranslate
back the same amount afterwards.