Shape.java 237 Bytes
Newer Older
Florian Grabowski's avatar
Florian Grabowski committed
1
package de._82grfl1bif.kpiVisualizer.layouts.simpleSquare;
Florian Grabowski's avatar
Florian Grabowski committed
2
3
4
5
6
7
8
9
10
11

import java.awt.Point;

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

    protected Shape(){}
}