Skip to content

Commit

Permalink
Adjust placement
Browse files Browse the repository at this point in the history
  • Loading branch information
skjolber committed Dec 7, 2023
1 parent aefa32f commit 66367ff
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

import java.util.List;

import com.github.skjolber.packing.api.Surface.Label;

public interface SupportedPlacement3D extends Placement3D {

List<SupportedPlacement3D> getBottomSupports();
Expand All @@ -16,4 +18,6 @@ public interface SupportedPlacement3D extends Placement3D {

List<SupportedPlacement3D> getRearSupports();

List<SupportedPlacement3D> getSupports(Label label);

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.github.skjolber.packing.api;

public class SupportedStackPlacement extends StackPlacement {

private static final long serialVersionUID = 1L;

public SupportedStackPlacement() {
super();
}

public SupportedStackPlacement(Stackable stackable, StackValue value, int x, int y, int z) {
super(stackable, value, x, y, z);
}


}

0 comments on commit 66367ff

Please sign in to comment.