本文整理汇总了VB.NET中System.Drawing.Drawing2D.Matrix.Rotate方法的典型用法代码示例。如果您正苦于以下问题:VB.NET Matrix.Rotate方法的具体用法?VB.NET Matrix.Rotate怎么用?VB.NET Matrix.Rotate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Drawing.Drawing2D.Matrix 的用法示例。
在下文中一共展示了Matrix.Rotate方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。
示例1: RotateExample
Public Sub RotateExample(ByVal e As PaintEventArgs)
Dim myPen As New Pen(Color.Blue, 1)
Dim myPen2 As New Pen(Color.Red, 1)
' Draw the rectangle to the screen before applying the transform.
e.Graphics.DrawRectangle(myPen, 150, 50, 200, 100)
' Create a matrix and rotate it 45 degrees.
Dim myMatrix As New Matrix
myMatrix.Rotate(45, MatrixOrder.Append)
' Draw the rectangle to the screen again after applying the
' transform.
e.Graphics.Transform = myMatrix
e.Graphics.DrawRectangle(myPen2, 150, 50, 200, 100)
End Sub
开发者ID:VB.NET开发者,项目名称:System.Drawing.Drawing2D,代码行数:16,代码来源:Matrix.Rotate
示例2: MainClass
' 导入命名空间
Imports System
Imports System.Windows.Forms
Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Drawing.Text
Imports System.Drawing.Imaging
Public Class MainClass
Shared Sub Main()
Dim m As Matrix = New Matrix()
m.Rotate(90, MatrixOrder.Append)
m.Translate(7, 12, MatrixOrder.Append)
Dim p() As Point = {New Point(20, 45)}
Console.WriteLine(p.GetValue(0).ToString())
m.TransformPoints(p)
Console.WriteLine(p.GetValue(0).ToString())
End Sub
End Class
开发者ID:VB程序员,项目名称:System.Drawing.Drawing2D,代码行数:24,代码来源:Matrix.Rotate
注:本文中的System.Drawing.Drawing2D.Matrix.Rotate方法示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论