package de.reinhardt_karlheinz.pcc.android;

public class TouchVector {
	private float x1, x2, y1, y2;
	private float x,y;
	public TouchVector(float x1, float x2, float y1, float y2) {
		this.x1 = x1;
		this.x2 = x2;
		this.y1 = y1;
		this.y2 = y2;
		x = x2 - x1;
		y = y2 - y1;
	}

	/**
	 * 
	 * @return angle
	 */
	public int getDir(TouchVector v) {
int angle = 0;
//angle = ()
//angle = Math.
		return 0;

	}
	public void mulVektor(TouchVector v){
		
	}
}
