Struct D2D1Matrix5X4F
Represents a 5-by-4 matrix.
Implements
Inherited Members
Namespace: JeremyAnsel.DirectX.D2D1
Assembly: JeremyAnsel.DirectX.D2D1.dll
Syntax
public struct D2D1Matrix5X4F : IEquatable<D2D1Matrix5X4F>
Properties
| Edit this page View SourceM11
Gets or sets the value in the first row and first column of the matrix.
Declaration
public float M11 { get; set; }
Property Value
Type | Description |
---|---|
float |
M12
Gets or sets the value in the first row and second column of the matrix.
Declaration
public float M12 { get; set; }
Property Value
Type | Description |
---|---|
float |
M13
Gets or sets the value in the first row and third column of the matrix.
Declaration
public float M13 { get; set; }
Property Value
Type | Description |
---|---|
float |
M14
Gets or sets the value in the first row and fourth column of the matrix.
Declaration
public float M14 { get; set; }
Property Value
Type | Description |
---|---|
float |
M21
Gets or sets the value in the second row and first column of the matrix.
Declaration
public float M21 { get; set; }
Property Value
Type | Description |
---|---|
float |
M22
Gets or sets the value in the second row and second column of the matrix.
Declaration
public float M22 { get; set; }
Property Value
Type | Description |
---|---|
float |
M23
Gets or sets the value in the second row and third column of the matrix.
Declaration
public float M23 { get; set; }
Property Value
Type | Description |
---|---|
float |
M24
Gets or sets the value in the second row and fourth column of the matrix.
Declaration
public float M24 { get; set; }
Property Value
Type | Description |
---|---|
float |
M31
Gets or sets the value in the third row and first column of the matrix.
Declaration
public float M31 { get; set; }
Property Value
Type | Description |
---|---|
float |
M32
Gets or sets the value in the third row and second column of the matrix.
Declaration
public float M32 { get; set; }
Property Value
Type | Description |
---|---|
float |
M33
Gets or sets the value in the third row and third column of the matrix.
Declaration
public float M33 { get; set; }
Property Value
Type | Description |
---|---|
float |
M34
Gets or sets the value in the third row and fourth column of the matrix.
Declaration
public float M34 { get; set; }
Property Value
Type | Description |
---|---|
float |
M41
Gets or sets the value in the fourth row and first column of the matrix.
Declaration
public float M41 { get; set; }
Property Value
Type | Description |
---|---|
float |
M42
Gets or sets the value in the fourth row and second column of the matrix.
Declaration
public float M42 { get; set; }
Property Value
Type | Description |
---|---|
float |
M43
Gets or sets the value in the fourth row and third column of the matrix.
Declaration
public float M43 { get; set; }
Property Value
Type | Description |
---|---|
float |
M44
Gets or sets the value in the fourth row and fourth column of the matrix.
Declaration
public float M44 { get; set; }
Property Value
Type | Description |
---|---|
float |
M51
Gets or sets the value in the fifth row and first column of the matrix.
Declaration
public float M51 { get; set; }
Property Value
Type | Description |
---|---|
float |
M52
Gets or sets the value in the fifth row and second column of the matrix.
Declaration
public float M52 { get; set; }
Property Value
Type | Description |
---|---|
float |
M53
Gets or sets the value in the fifth row and third column of the matrix.
Declaration
public float M53 { get; set; }
Property Value
Type | Description |
---|---|
float |
M54
Gets or sets the value in the fifth row and fourth column of the matrix.
Declaration
public float M54 { get; set; }
Property Value
Type | Description |
---|---|
float |
Methods
| Edit this page View SourceEquals(D2D1Matrix5X4F)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(D2D1Matrix5X4F other)
Parameters
Type | Name | Description |
---|---|---|
D2D1Matrix5X4F | other | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool |
Equals(object)
Determines whether the specified object is equal to the current object.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The object to compare with the current object. |
Returns
Type | Description |
---|---|
bool |
Overrides
| Edit this page View SourceGetHashCode()
Returns the hash code for this instance.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A 32-bit signed integer that is the hash code for this instance. |
Overrides
Operators
| Edit this page View Sourceoperator ==(D2D1Matrix5X4F, D2D1Matrix5X4F)
Compares two D2D1Matrix5X4F objects. The result specifies whether the values of the two objects are equal.
Declaration
public static bool operator ==(D2D1Matrix5X4F left, D2D1Matrix5X4F right)
Parameters
Type | Name | Description |
---|---|---|
D2D1Matrix5X4F | left | The left D2D1Matrix5X4F to compare. |
D2D1Matrix5X4F | right | The right D2D1Matrix5X4F to compare. |
Returns
Type | Description |
---|---|
bool |
operator !=(D2D1Matrix5X4F, D2D1Matrix5X4F)
Compares two D2D1Matrix5X4F objects. The result specifies whether the values of the two objects are unequal.
Declaration
public static bool operator !=(D2D1Matrix5X4F left, D2D1Matrix5X4F right)
Parameters
Type | Name | Description |
---|---|---|
D2D1Matrix5X4F | left | The left D2D1Matrix5X4F to compare. |
D2D1Matrix5X4F | right | The right D2D1Matrix5X4F to compare. |
Returns
Type | Description |
---|---|
bool |