Advertisement
Lusien_Lashans

Ivector Interface

Dec 1st, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. package azaza;
  2.  
  3. public interface IVector {
  4.     int dimension();
  5.     double getComponent(int i);
  6.     double scalar(IVector vector);
  7.     double length();
  8.     IVector multiply(double factor);
  9.     IVector add(IVector v);
  10.     IVector sub(IVector v);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement