IGraphedElement.java 390 B

123456789101112131415
  1. package classes;
  2. public interface IGraphedElement {
  3. public static final boolean STRETCH_BY_DEFAULT=false;
  4. void setLocalPeriod(int period);
  5. int getLocalPeriod();
  6. /**
  7. * @return Whether the given points should be stretched over the entire graph
  8. * as opposed to repeated once the period is over.
  9. */
  10. boolean isStretching();
  11. void setStretching(boolean stretch);
  12. }