Shape.java 225 Bytes
Newer Older
Florian Grabowski's avatar
Florian Grabowski committed
1
2
3
4
5
6
7
8
9
10
11
package de._82grfl1bif.KPI_Visualizer.helpers;

import java.awt.Point;

public class Shape {
    protected Point bottomLeftCorner;
    protected Point topRightCorner;
    protected int xEdgeLength;

    protected Shape(){}
}