Example #1
0
 public Vector19(Factory19 f, Random rand, int root)
 {
     factory = f;
     edo     = 19;
     pitch   = rand.Next(60);
     pitch  += root * 19;
 }
Example #2
0
 public Vector19(Factory19 f, Random rand, int root, int loc)
 {
     factory = f;
     edo     = 19;
     pitch   = (((loc % 12) / 2) * 6) % 19;
     pitch  += root * 19;
 }
Example #3
0
 public Vector19(Factory19 f, int p)
 {
     factory = f;
     edo     = 19;
     pitch   = p;
 }