Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package azaza;
- public interface IVector {
- int dimension();
- double getComponent(int i);
- double scalar(IVector vector);
- double length();
- IVector multiply(double factor);
- IVector add(IVector v);
- IVector sub(IVector v);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement