Exemple #1
0
        /**
         * add a new soundevent to this track at specified beat count using ACID Music Studio Beat RUler notation
         * (shorthand notation method name)
         */
        public double b(double beatCount, SoundEvent ev)
        {
            // translate beats to time
            double t = Beat.BeatToTime(beatCount, bpm);

            // add event to track
            this.AddEvent(t, ev);
            return(t);
        }