Struct DxgiMatrix3x2F
Assembly: JeremyAnsel.DirectX.Dxgi.dll
Syntax
public struct DxgiMatrix3x2F : IEquatable<DxgiMatrix3x2F>
Properties
|
Edit this page
View Source
this[int]
Declaration
public float this[int index] { get; set; }
Parameters
| Type |
Name |
Description |
| int |
index |
|
Property Value
Exceptions
|
Edit this page
View Source
M11
Gets or sets the value in the first row and first column of the matrix.
Declaration
public float M11 { get; set; }
Property Value
|
Edit this page
View Source
M12
Gets or sets the value in the first row and second column of the matrix.
Declaration
public float M12 { get; set; }
Property Value
|
Edit this page
View Source
M21
Gets or sets the value in the second row and first column of the matrix.
Declaration
public float M21 { get; set; }
Property Value
|
Edit this page
View Source
M22
Gets or sets the value in the second row and second column of the matrix.
Declaration
public float M22 { get; set; }
Property Value
|
Edit this page
View Source
M31
Gets or sets the value in the third row and first column of the matrix.
Declaration
public float M31 { get; set; }
Property Value
|
Edit this page
View Source
M32
Gets or sets the value in the third row and second column of the matrix.
Declaration
public float M32 { get; set; }
Property Value
Methods
|
Edit this page
View Source
Equals(DxgiMatrix3x2F)
Declaration
public readonly bool Equals(DxgiMatrix3x2F other)
Parameters
Returns
|
Edit this page
View Source
Equals(object?)
Declaration
public override readonly bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
|
Edit this page
View Source
GetHashCode()
Declaration
public override readonly int GetHashCode()
Returns
Overrides
|
Edit this page
View Source
NativeReadFrom(nint)
Declaration
public static DxgiMatrix3x2F NativeReadFrom(nint buffer)
Parameters
| Type |
Name |
Description |
| nint |
buffer |
|
Returns
|
Edit this page
View Source
NativeReadFrom(nint, Span<DxgiMatrix3x2F>)
Declaration
public static void NativeReadFrom(nint buffer, Span<DxgiMatrix3x2F> objects)
Parameters
|
Edit this page
View Source
NativeRequiredSize()
Declaration
public static int NativeRequiredSize()
Returns
|
Edit this page
View Source
NativeRequiredSize(int)
Declaration
public static int NativeRequiredSize(int count)
Parameters
| Type |
Name |
Description |
| int |
count |
|
Returns
|
Edit this page
View Source
NativeWriteTo(nint, in DxgiMatrix3x2F)
Declaration
public static void NativeWriteTo(nint buffer, in DxgiMatrix3x2F obj)
Parameters
|
Edit this page
View Source
NativeWriteTo(nint, ReadOnlySpan<DxgiMatrix3x2F>)
Declaration
public static void NativeWriteTo(nint buffer, ReadOnlySpan<DxgiMatrix3x2F> objects)
Parameters
|
Edit this page
View Source
ToString()
Returns a string that represents the current object.
Declaration
public override readonly string ToString()
Returns
| Type |
Description |
| string |
A string that represents the current object.
|
Overrides
Operators
|
Edit this page
View Source
operator ==(DxgiMatrix3x2F, DxgiMatrix3x2F)
Declaration
public static bool operator ==(DxgiMatrix3x2F left, DxgiMatrix3x2F right)
Parameters
Returns
|
Edit this page
View Source
operator !=(DxgiMatrix3x2F, DxgiMatrix3x2F)
Declaration
public static bool operator !=(DxgiMatrix3x2F left, DxgiMatrix3x2F right)
Parameters
Returns
Implements