SoundMark constructor

SoundMark(
  1. int start,
  2. int end,
  3. Coordinates coordinates
)

Creates a SoundMark with the specified start and end offsets and coordinates.

API users typically do not create SoundMark instances directly.

Parameters

  • start: Start offset in milliseconds (relative to the beginning of the log).
  • end: End offset in milliseconds (relative to the beginning of the log).
  • coordinates: Coordinates where the sound was recorded.

Implementation

SoundMark(this.start, this.end, this.coordinates);