package de.reinhardt_karlheinz.pcc.android;

public class TouchVector {
	public float x1, x2, y1, y2;

	public TouchVector(float x1, float x2, float y1, float y2) {
		this.x1 = x1;
		this.x2 = x2;
		this.y1 = y1;
		this.y2 = y2;
	}

}
