com.github.skjolberg.packing.impl.PackResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of 3d-bin-container-packing Show documentation
Show all versions of 3d-bin-container-packing Show documentation
Library for 3D rectangular bin packing
package com.github.skjolberg.packing.impl;
public interface PackResult {
/**
* Compare two results
*
* @param result to compare against
* @return true if this box is better than the argument
*/
boolean packsMoreBoxesThan(PackResult result);
boolean isEmpty();
}