Shape.java 238 Bytes
Newer Older
Florian Grabowski's avatar
Florian Grabowski committed
1
package de._82grfl1bif.KPI_Visualizer.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(){}
}