Struct DxgiMatrix3x2F
Represents a 3x2 matrix.
Implements
Inherited Members
Namespace: JeremyAnsel.DirectX.Dxgi
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public struct DxgiMatrix3x2F : IEquatable<DxgiMatrix3x2F>
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 |
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 |
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 |
Methods
| Edit this page View SourceEquals(DxgiMatrix3x2F)
Determines whether the specified object is equal to the current object.
Declaration
public bool Equals(DxgiMatrix3x2F other)
Parameters
Type | Name | Description |
---|---|---|
DxgiMatrix3x2F | 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
| Edit this page View SourceToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |
Overrides
Operators
| Edit this page View Sourceoperator ==(DxgiMatrix3x2F, DxgiMatrix3x2F)
Compares two DxgiMatrix3x2F objects. The result specifies whether the values of the two objects are equal.
Declaration
public static bool operator ==(DxgiMatrix3x2F left, DxgiMatrix3x2F right)
Parameters
Type | Name | Description |
---|---|---|
DxgiMatrix3x2F | left | The left DxgiMatrix3x2F to compare. |
DxgiMatrix3x2F | right | The right DxgiMatrix3x2F to compare. |
Returns
Type | Description |
---|---|
bool |
operator !=(DxgiMatrix3x2F, DxgiMatrix3x2F)
Compares two DxgiMatrix3x2F objects. The result specifies whether the values of the two objects are unequal.
Declaration
public static bool operator !=(DxgiMatrix3x2F left, DxgiMatrix3x2F right)
Parameters
Type | Name | Description |
---|---|---|
DxgiMatrix3x2F | left | The left DxgiMatrix3x2F to compare. |
DxgiMatrix3x2F | right | The right DxgiMatrix3x2F to compare. |
Returns
Type | Description |
---|---|
bool |