SKPoint.Equals Method

Definition

Overloads

Equals(Object)

Specifies whether this SKPoint contains the same coordinates as the specified Object.

Equals(SKPoint)

Specifies whether this SKPoint contains the same coordinates as the specified SKPoint.

Equals(Object)

Specifies whether this SKPoint contains the same coordinates as the specified Object.

public override bool Equals (object obj);
public override readonly bool Equals (object obj);

Parameters

obj
Object

The Object to test.

Returns

This method returns true if obj is a SKPoint and has the same coordinates as this SKPoint.

Applies to

Equals(SKPoint)

Specifies whether this SKPoint contains the same coordinates as the specified SKPoint.

public readonly bool Equals (SkiaSharp.SKPoint obj);

Parameters

obj
SKPoint

The SKPoint to test.

Returns

This method returns true if obj has the same coordinates as this SKPoint.

Implements

Applies to