我用 GDI+ 绘制可缩放矢量图形, 我需要在鼠标移动时进行点击测试。 我所看到的所有例子都使用模型空间 = 世界空间, 没有变换。 下面是问题的一个简化示例 :
Imports System.Drawing.Drawing2D
Public Class Form1
Private myrect As New GraphicsPath
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
The rectangle s centre is at 30,10. Move to origin to rotate
e.Graphics.TranslateTransform(-30, -10, Drawing2D.MatrixOrder.Append)
e.Graphics.RotateTransform(45, Drawing2D.MatrixOrder.Append)
Move it back, 50x50 away from the origin
(80,60 because we moved -30,-10 to rotate)
e.Graphics.TranslateTransform(80, 60, Drawing2D.MatrixOrder.Append)
e.Graphics.DrawPath(New Pen(Brushes.Black, 2), myrect)
...loads more painting, many paths, many varying transformations
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) _
Handles Me.Load
Make a rectangle 60x20 with top-left corner at the origin
myrect.AddLine(0, 0, 60, 0)
myrect.AddLine(60, 0, 60, 20)
myrect.AddLine(60, 20, 0, 20)
myrect.CloseFigure()
...loads more shapes created here
End Sub
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
Pretend that all the drawing stuff above happened some unspecified time ago,
in different assembly, written by a martian, in some other vile language.
Obviously, his "e.graphics" has long since been garbage-collected.
If myrect.IsVisible(e.Location) Then
Works when moving over the path at the origin, ignores transforms.
Debug.WriteLine("Over the rectangle at " & e.Location.ToString)
End If
End Sub
End Class
Which produces (mouse moving in red)
在变形前的矩形“强”是“强”之前的矩形。
我知道如果我有在Onpaint使用的图形, 我可以用它来用变换来进行测试, 但金则说“永远不要保存图形”。
欢迎提出任何建议。
死后:请记录一下, 文森特回答的落实情况,
Imports System.Drawing.Drawing2D
Public Class Form1
Private myrect As New GraphicsPath
Private mytransform As Matrix
Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs)
The rectangle s centre is at 30,10. Move to origin to rotate
e.Graphics.TranslateTransform(-30, -10, Drawing2D.MatrixOrder.Append)
e.Graphics.RotateTransform(45, Drawing2D.MatrixOrder.Append)
Move it back, 50x50 away from the origin
(80,60 because we moved -30,-10 to rotate)
e.Graphics.TranslateTransform(80, 60, Drawing2D.MatrixOrder.Append)
e.Graphics.DrawPath(New Pen(Brushes.Black, 2), myrect)
mytransform = e.Graphics.Transform
...loads more painting, many paths, many varying transformations
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) _
Handles Me.Load
Make a rectangle 60x20 with top-left corner at the origin
myrect.AddLine(0, 0, 60, 0)
myrect.AddLine(60, 0, 60, 20)
myrect.AddLine(60, 20, 0, 20)
myrect.CloseFigure()
...loads more shapes created here
End Sub
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
mytransform.Invert()
Dim mouseat() As Point = {e.Location}
mytransform.TransformPoints(mouseat)
If myrect.IsVisible(mouseat(0)) Then
Works when moving over the path at the origin, ignores transforms.
Debug.WriteLine("Over the rectangle at " & e.Location.ToString)
End If
End Sub
End Class