-
Notifications
You must be signed in to change notification settings - Fork 122
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add some support * Remove generics, various prototypes * Remove unused stuff * Remove unused stuff
- Loading branch information
Showing
89 changed files
with
1,472 additions
and
2,706 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
api/src/main/java/com/github/skjolber/packing/api/Placement2D.java
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
api/src/main/java/com/github/skjolber/packing/api/Placement3D.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 0 additions & 23 deletions
23
api/src/main/java/com/github/skjolber/packing/api/SupportedPlacement3D.java
This file was deleted.
Oops, something went wrong.
16 changes: 0 additions & 16 deletions
16
api/src/main/java/com/github/skjolber/packing/api/SupportedStackPlacement.java
This file was deleted.
Oops, something went wrong.
13 changes: 7 additions & 6 deletions
13
api/src/main/java/com/github/skjolber/packing/api/ep/ExtremePoints.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
package com.github.skjolber.packing.api.ep; | ||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
import com.github.skjolber.packing.api.Placement2D; | ||
import com.github.skjolber.packing.api.StackPlacement; | ||
|
||
public interface ExtremePoints<P extends Placement2D & Serializable, Point extends Point2D<P>> { | ||
public interface ExtremePoints { | ||
|
||
boolean add(int index, P placement); | ||
boolean add(int index, StackPlacement placement); | ||
|
||
Point getValue(int i); | ||
Point3D getValue(int i); | ||
|
||
List<Point> getValues(); | ||
List<Point3D> getValues(); | ||
|
||
int getValueCount(); | ||
|
||
void reset(int dx, int dy, int dz); | ||
|
||
void redo(); | ||
|
||
List<StackPlacement> getPlacements(); | ||
} |
Oops, something went wrong.