我需要在我的打印文档上创建一个 15 点宽 x 15 点高的 5 点小星星,其中 x 起始位置为 110,y 起始位置为 110。
到目前为止我在网上找到的代码创建了一个星号,但在左上角的 0,0 位置。
' Make the points for a star.
Dim pts(4) As Point
Dim cx As Integer = 15 \ 2
Dim cy As Integer = 15 \ 2
Dim theta As Double = -Math.PI / 2
Dim dtheta As Double = Math.PI * 0.8
For i As Integer = 0 To 4
pts(i).X = CInt(cx + cx * Math.Cos(theta))
pts(i).Y = CInt(cy + cy * Math.Sin(theta))
theta += dtheta
Next i
e.Graphics.FillPolygon(Brushes.Black, pts)
我现在如何将星形图形移动到 x.110 y.110 的位置?