public interface Move
| Modifier and Type | Interface and Description |
|---|---|
static interface |
Move.Moveable<C>
Direct move actions
|
| Modifier and Type | Method and Description |
|---|---|
static Operation |
by(double dx,
double dy)
Create operation who moves the cursor from the current mouse position by the
provided delta
|
static Operation |
by(Duration d,
double dx,
double dy)
Create operation who moves the cursor from the current mouse position by the
provided delta in the provided time
|
static Operation |
to(double x,
double y)
Move the cursor to the x/y position on the screen
|
static Operation |
to(Duration d,
double x,
double y)
Move the cursor to the x/y position on the screen
|
static Operation |
with(Duration d,
double vx,
double vy)
Move the cursor with the provided x/y velocity for the provided time
|
static Operation by(double dx, double dy)
dx - the x deltady - the y deltastatic Operation by(Duration d, double dx, double dy)
d - duration it takes move the deltadx - the x deltady - the y deltastatic Operation to(double x, double y)
x - the absolute x coordinate on the screeny - the absolute y coordinate on the screenstatic Operation to(Duration d, double x, double y)
d - the duration it takes to reach the provided positionx - the absolute x coordinate on the screeny - the absolute y coordinate on the screenCopyright © 2017. All rights reserved.