#17: Start implementing more of the block restore and queue systems.

This commit is contained in:
zontreck 2024-04-11 03:04:26 -07:00
parent c03261fd7a
commit 01f269e123
5 changed files with 142 additions and 3 deletions

View file

@ -14,7 +14,7 @@ import java.util.List;
public class PositionUtil
{
public List<Vector3> makeCube(Vector3 p1, Vector3 p2)
public static List<Vector3> makeCube(Vector3 p1, Vector3 p2)
{
List<Vector3> vecs = new ArrayList<>();
Vector3 work = new Vector3d();
@ -114,7 +114,7 @@ public class PositionUtil
}
public List<Vector3> sortAscending(List<Vector3> vecs)
public static List<Vector3> sortAscending(List<Vector3> vecs)
{
List<Vector3> copy = new ArrayList<>(vecs);