Kalon icon indicating copy to clipboard operation
Kalon copied to clipboard

A humanlike cursor movement library that uses randomised bezier curves for path generation

Kalon

A humanlike cursor movement library that uses randomised bezier curves for path generation


Example

The image below demonstrates some generated movements between a set of points


Caveats

  • The provided delay applies exclusively to the movement of the cursor rather than the total runtime of the method

Getting started

The example below demonstrates a basic implementation of the library

var point = new Point(0, 0);
var delay = TimeSpan.FromMilliseconds(0);

CursorMover.MoveCursor(point, delay);

CursorMover Class

Provides the functionality to move the cursor in a human realistic manner

public static class CursorMover

Methods

Moves the cursor to a point in a timespan

public static void MoveCursor(Point, TimeSpan);