IGraphedElement.java 331 B

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