Files
2026-06-05 22:02:32 +02:00

24 lines
567 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 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
}
}
*/