import java.util.Random;

/**
 * Created by zulupero on 01/12/15.
 */
public class GuitarString {
    final Random RAND = new Random();
    final double ATTN = 0.994 ;
    int toc ;
    RingBuffer buf ;

    /**
     * Constructeur. Alloue un RingBuffer de capacité Fe/freq
     * @param freq
     */
    public GuitarString(double freq){
    
    }

    /**
     * Initialise le buffer avec du bruit blanc
     */
    public void pluck(){
     

    }

    /**
     * execute un pas de simulation
     */
    public void tic(){

    }


    public static void main(String[] args) {
        
        double f0 = 523.25; // do5;
        
    }
}
