Edit

SKMatrix44.Equals Method

Definition

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.

Implements

Applies to