SKMatrix44.Equals Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| Equals(Object) |
Determines whether this matrix is equal to another object. |
| Equals(SKMatrix44) |
Determines whether this matrix is equal to another matrix. |
Equals(Object)
Determines whether this matrix is equal to another object.
public override readonly bool Equals(object obj);
Parameters
- obj
- Object
The object to compare with this instance.
Returns
Returns true if the object is an SKMatrix44 and is equal to this instance, otherwise false.
Applies to
Equals(SKMatrix44)
Determines whether this matrix is equal to another matrix.
public readonly bool Equals(SkiaSharp.SKMatrix44 obj);
Parameters
- obj
- SKMatrix44
The SKMatrix44 to compare with this instance.
Returns
Returns true if the matrices are equal, otherwise false.