Table of Contents

Constructor SKFlingGestureEventArgs

Namespace
SkiaSharp.Extended
Assembly
SkiaSharp.Extended.dll

SKFlingGestureEventArgs(SKPoint)

Initializes a new instance of the SKFlingGestureEventArgs class with velocity only. Used for the initial FlingDetected event.

public SKFlingGestureEventArgs(SKPoint velocity)

Parameters

velocity SKPoint

The initial velocity in pixels per second.

SKFlingGestureEventArgs(SKPoint, SKPoint)

Initializes a new instance of the SKFlingGestureEventArgs class with velocity and per-frame displacement. Used for FlingUpdated events.

public SKFlingGestureEventArgs(SKPoint velocity, SKPoint delta)

Parameters

velocity SKPoint

The current velocity in pixels per second.

delta SKPoint

The displacement for this animation frame, in pixels.