Gizmo constructor

Gizmo(
  1. ThermionEntity x,
  2. ThermionEntity y,
  3. ThermionEntity z,
  4. ThermionViewer controller, {
  5. Set<ThermionEntity> ignore = const <ThermionEntity>{},
})

Implementation

Gizmo(this.x, this.y, this.z, this.controller,
    {this.ignore = const <ThermionEntity>{}}) {
  controller.pickResult.listen(_onPickResult);
}