Class Step
  Class Step
java.lang.Object
   |
   +----Step
  -  public class Step
  
-  extends Object
  
Step stores the information of one step.
    -  See Also:
    
 -  Figur, Floor
 
  
  -  
	Step(float, boolean, boolean, int, float, float, String, int)
   -  Stores one step with time and heel/toe string.
  
 -  
	Step(float, boolean, boolean, int, float, float, String)
   -  Stores one step with time string.
  
 -  
	Step(float, boolean, boolean, int, float, float)
   -  Stores one step without time string.
 
  
Step
  public Step(float t,
              boolean l,
              boolean dot,
              int d,
              float xp,
              float yp,
              String Tstr,
              int HTid)
  -  Stores one step with time and heel/toe string.
  
    -  Parameters:
    
 -  t - how much time is to wait until the next step can be set
    
-  l - is this a left foot
    
-  dot - is this a dotted foot
    
-  xp - x-coordinate relative to the dance-floor grid
    
-  yp - y-coordinate relative to the dance-floor grid
    
-  TStr - time string (e.g. slow/quick)
    
-  HTid - heel/toe id number (defined in Figur.java)
  
       
 
Step
  public Step(float t,
              boolean l,
              boolean dot,
              int d,
              float xp,
              float yp,
              String Tstr)
  -  Stores one step with time string.
  
    -  Parameters:
    
 -  t - how much time is to wait until the next step can be set
    
-  l - is this a left foot
    
-  dot - is this a dotted foot
    
-  xp - x-coordinate relative to the dance-floor grid
    
-  yp - y-coordinate relative to the dance-floor grid
    
-  TStr - time string (e.g. slow/quick)
  
      
 
Step
  public Step(float t,
              boolean l,
              boolean dot,
              int d,
              float xp,
              float yp)
  -  Stores one step without time string.
  
    -  Parameters:
    
 -  t - how much time is to wait until the next step can be set
    
-  l - is this a left foot
    
-  dot - is this a dotted foot
    
-  xp - x-coordinate relative to the dance-floor grid
    
-  yp - y-coordinate relative to the dance-floor grid