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

Last change on this file was 1102, checked in by davidb, 6 years ago

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File size: 263 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.