All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.sciss.packing2d.demo.IndexedRectangle Maven / Gradle / Ivy

The newest version!
package de.sciss.packing2d.demo;

import java.awt.Rectangle;

public class IndexedRectangle extends Rectangle {
    private int index;
    public IndexedRectangle(int width, int height){
        super(width, height);
    }
    public int getIndex() {
        return index;
    }
    public void setIndex(int index) {
        this.index = index;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy