source: trunk/src/org/apollo/meldex/PitchValue.java@ 1006

Last change on this file since 1006 was 315, checked in by bjn8, 16 years ago

Apollo spin-off added

File size: 261 bytes
Line 
1package org.apollo.meldex;
2
3
4public class PitchValue
5{
6 // A pitch data value consists of a period and a position
7 double period;
8 int position;
9
10
11 public PitchValue(double per, int pos)
12 {
13 period = per;
14 position = pos;
15 }
16}
Note: See TracBrowser for help on using the repository browser.