//Maya Acharya Music 220a Final Project //Tanpura instrument--extends Sitar STK Instrument //Made for Music 220a //This particular part of my project is one I want to keep working //on and perfecting, as it will improve my overall //Laptop Tanpura project but also allow me to have a good //Tanpura object for any other projects I may want to do, //and perhaps offer this STK instrument for others to use as well. //For now, this Tanpura class basically serves as a placeholder, //but in the future I would like to actually implement it in the following //two ways: //1. Implement my code from TanpuraRampResonator.ck and TanpuraNotes.ck //into this Tanpura instrument class. //2. Play around with the Sitar object more and find ways to fine-tune //the sound. public class Tanpura extends Sitar { fun void tanpuraOn(float velocity){ velocity => noteOn; } }