set method

void set(
  1. double x,
  2. double y
)

Set the float value of the bound uniform.

Implementation

void set(double x, double y) {
  _xSlot.set(x);
  _ySlot.set(y);
}