点击或拖拽改变大小

Matrix 方法

Matrix 类型公开以下成员。

方法
  名称说明
公共方法Append
Append - "this" becomes this * matrix, the same as this *= matrix.
公共方法静态成员CreateTranslation
Creates a translation matrix from the given vector.
公共方法Equals(Object)
Equals - compares this Matrix with the passed in object. In this equality float.NaN is equal to itself, unlike in numeric equality. Note that float values can acquire error when operated upon, such that an exact comparison between two values which are logically equal may fail.
(重写 ValueTypeEquals(Object).)
公共方法Equals(Matrix)
Equals - compares this Matrix with the passed in object. In this equality float.NaN is equal to itself, unlike in numeric equality. Note that float values can acquire error when operated upon, such that an exact comparison between two values which are logically equal may fail.
公共方法静态成员Equals(Matrix, Matrix)
Compares two Matrix instances for object equality. In this equality float.NaN is equal to itself, unlike in numeric equality. Note that float values can acquire error when operated upon, such that an exact comparison between two values which are logically equal may fail.
公共方法GetHashCode
Returns the HashCode for this Matrix
(重写 ValueTypeGetHashCode.)
公共方法GetType (继承自 Object。)
公共方法Invert
Replaces matrix with the inverse of the transformation. This will throw an InvalidOperationException if !HasInverse
公共方法静态成员Multiply
Multiply
公共方法Prepend
Prepend - "this" becomes matrix * this, the same as this = matrix * this.
公共方法Rotate
Rotates this matrix about the origin
公共方法RotateAt
Rotates this matrix about the given point
公共方法RotateAtPrepend
Prepends a rotation about the given point to "this"
公共方法RotatePrepend
Prepends a rotation about the origin to "this"
公共方法Scale
Scales this matrix around the origin
公共方法ScaleAt
Scales this matrix around the center provided
公共方法ScaleAtPrepend
Prepends a scale around the center provided to "this"
公共方法ScalePrepend
Prepends a scale around the origin to "this"
公共方法SetIdentity
Sets the matrix to identity.
公共方法Skew
Skews this matrix
公共方法SkewPrepend
Prepends a skew to this matrix
公共方法ToString
Creates a string representation of this object based on the current culture.
(重写 ValueTypeToString.)
公共方法ToString(IFormatProvider)
Creates a string representation of this object based on the IFormatProvider passed in. If the provider is null, the CurrentCulture is used.
公共方法Transform(Point)
Transform - returns the result of transforming the point by this matrix
公共方法Transform(Point)
Transform - Transforms each point in the array by this matrix
公共方法Transform(Vector)
Transform - returns the result of transforming the Vector by this matrix.
公共方法Transform(Vector)
Transform - Transforms each Vector in the array by this matrix.
公共方法Translate
Translates this matrix
公共方法TranslatePrepend
Prepends a translation to this matrix
Top
扩展方法
  名称说明
公共扩展器方法ConvertTo
类型转换
(由 ObjectExtenstions 定义。)
公共扩展器方法Delay
延迟操作
(由 ObjectExtenstions 定义。)
公共扩展器方法Equal
对象是否相等
(由 ObjectExtenstions 定义。)
公共扩展器方法GetCreationCode (由 ObjectExtenstions 定义。)
公共扩展器方法GetPropretyValue
获取对象属性值
(由 ObjectExtenstions 定义。)
公共扩展器方法GetValue
快速动态获取对象的属性值
(由 FastReflectionExtensions 定义。)
公共扩展器方法Invoke
快速动态调用对象的方法
(由 FastReflectionExtensions 定义。)
公共扩展器方法SetPropretyValue
设置属性值
(由 ObjectExtenstions 定义。)
公共扩展器方法SetValue
快速动态设置对象的属性值
(由 FastReflectionExtensions 定义。)
公共扩展器方法ToMatrix (由 Extension 定义。)
Top
参见