RotateFlip - 何时应用?
我正在使用 RotateFlip 水平翻转精灵。看来 RotateFlip 是在绘制 Graphics 而不是图像时应用的。
问题是有些精灵需要翻转,有些则不需要(取决于精灵的方向)。我不想每次绘制翻转精灵时都克隆图像。
I'm using RotateFlip to flip sprites horizontally. It seems that RotateFlip is applied when Graphics is drawn not image.
The problem is that some sprites needs to be flipped and some not (depending on direction of sprite). I don't want to clone image each time I'm drawing flipped sprite.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
考虑在
Graphics
对象上使用变换矩阵,而不是在图像上使用RotateFlip
。翻转相当于将 X 或 Y 坐标缩放 -1。您可以预先计算单个翻转矩阵并在需要时使用它:但请注意,您在绘图时必须传递修改后的坐标,例如。使用上述转换,您必须传入
ContainerWidth - X
而不是X
。Consider using a transformation matrix on the
Graphics
object instead of usingRotateFlip
on the image. Flipping is equivalent to scaling the X or Y coordinates by -1. You can pre-compute a single flip matrix and use it whenever you want:Note however that you will have to pass in modified coordinates when drawing, for eg. using the above transform, you'll have to pass in
ContainerWidth - X
instead ofX
.