MidiNote

data class MidiNote(var note: Int = 0, var startTime: Float = 0.0f, var endTime: Float = 0.0f)

Represents a MIDI note with timing information. Used for MIDI synthesis and generation.

Constructors

Link copied to clipboard
constructor(note: Int = 0, startTime: Float = 0.0f, endTime: Float = 0.0f)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
var note: Int
Link copied to clipboard