added DTW to app
[gsk.git] / GestureDetectionApp / GestureRecognition / src / at / mus / recognition / Rectangle.java
blobf5aec25171a63f014370547417a26d01db114056
1 package at.mus.recognition;
3 public class Rectangle {
4 double x, y, width, height;
6 public Rectangle(double x, double y, double width, double height) {
7 this.x = x;
8 this.y = y;
9 this.width = width;
10 this.height = height;