set method

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

Set the float value of the bound uniform.

Implementation

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