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

net.lustlab.packer.Clipper Maven / Gradle / Ivy

The newest version!
package net.lustlab.packer;


/**
 * Clipper interface
 * @author Edwin Jakobs ([email protected])
 */
public interface Clipper {

	/**
	 * Determines if a rectangle should be inserted 
	 * @param area the area of the candidate node in which the rectangle will be inserted
	 * @param rectangle the 
	 * @return true if rectangle should be inserted into area
	 */
	boolean inside(Rectangle area, Rectangle rectangle);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy