de.sciss.packing2d.demo.IndexedRectangle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of packing2d-demo Show documentation
Show all versions of packing2d-demo Show documentation
Demo applications for the 2D packing algorithms
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