com.github.skjolberg.packing.impl.PermutationRotation 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;
import com.github.skjolberg.packing.Box;
public final class PermutationRotation {
private final int count;
private final Box[] boxes;
PermutationRotation(int count, Box[] boxes) {
this.count = count;
this.boxes = boxes;
}
Box[] getBoxes() {
return boxes;
}
public int getCount() {
return count;
}
}