Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public interface Node {
  2.  
  3.  
  4. public void reCalculate() ;
  5. public Vector calculate(float range);
  6. public double getLength() ;
  7. public int getPrecision();
  8. public void setPrecision(int i);
  9.  
  10. public Vector getFirst();
  11. public Vector getLast();
  12.  
  13. public void setFirst(Vector v);
  14. public void setLast(Vector v);
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement