Add project files.

This commit is contained in:
roman
2026-06-05 22:02:32 +02:00
parent f09ad1b7c6
commit 274d607d54
25 changed files with 5462 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
/*
* PÔVODNÝ ALGORITMUS zakomentovaný, nahradený LayerPacker
*
using System;
using System.Collections.Generic;
using System.Linq;
namespace BoxPacker3D
{
public class Packer3D
{
private const double EPS = 0.001;
public List<PackedItem> Pack(List<Item> items, Box box,
double wallPad = 0, double itemPad = 0, Action<int, int>? onProgress = null,
bool allowRotation = true, bool preferRotated = false)
{
// ... (Extreme Points algorithm)
}
// ... helper methods
}
}
*/