bell_note_on method

void bell_note_on(
  1. Pointer<FaustBell> bell,
  2. double freq,
  3. double velocity
)

Implementation

void bell_note_on(ffi.Pointer<FaustBell> bell, double freq, double velocity) {
  return _bell_note_on(bell, freq, velocity);
}