public Vector10(Factory10 f, Random rand, int root) { edo = 10; factory = f; pitch = rand.Next(15); pitch += root * edo; }
public Vector10(Factory10 f, Random rand, int root, int loc) { edo = 10; factory = f; pitch = rand.Next(15); //pitch = starting_pitch[(loc) % 14]; pitch += root * edo; }
public Vector10(Factory10 f, int p) { edo = 10; factory = f; pitch = p; }