All Projects → Dewera → Kalon

Dewera / Kalon

Licence: MIT License
A humanlike cursor movement library that uses randomised bezier curves for path generation

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to Kalon

rebez
Cubic bezier implementation in Reason / OCaml.
Stars: ✭ 31 (-41.51%)
Mutual labels:  bezier-curve
BezierCanvas
Adobe Illustrator's pen tool style bezier editor on Unity.
Stars: ✭ 126 (+137.74%)
Mutual labels:  bezier-curve
ludigraphix.github.io
Documentation for Ludigraphix
Stars: ✭ 21 (-60.38%)
Mutual labels:  bezier-curve
japanese-word-handler
Better Japanese word handling on Visual Studio Code.
Stars: ✭ 32 (-39.62%)
Mutual labels:  cursor-movement
HeartTree
Some animations drawing with canvas
Stars: ✭ 105 (+98.11%)
Mutual labels:  bezier-curve

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);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].