├── .gitignore ├── LICENSE ├── README.md ├── RectpackSharp.sln ├── RectpackSharp ├── PackingException.cs ├── PackingHints.cs ├── PackingRectangle.cs ├── RectanglePacker.cs └── RectpackSharp.csproj ├── Tests ├── Program.cs └── Tests.csproj ├── images ├── rectangles_random1.png ├── rectangles_random2.png ├── rectangles_random65536.jpeg ├── rectangles_similar.png ├── rectangles_spritesheet.png ├── rectangles_spritesheet2.png └── rectangles_squares.png └── packsharp-logo.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/README.md -------------------------------------------------------------------------------- /RectpackSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/RectpackSharp.sln -------------------------------------------------------------------------------- /RectpackSharp/PackingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/RectpackSharp/PackingException.cs -------------------------------------------------------------------------------- /RectpackSharp/PackingHints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/RectpackSharp/PackingHints.cs -------------------------------------------------------------------------------- /RectpackSharp/PackingRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/RectpackSharp/PackingRectangle.cs -------------------------------------------------------------------------------- /RectpackSharp/RectanglePacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/RectpackSharp/RectanglePacker.cs -------------------------------------------------------------------------------- /RectpackSharp/RectpackSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/RectpackSharp/RectpackSharp.csproj -------------------------------------------------------------------------------- /Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/Tests/Program.cs -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /images/rectangles_random1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_random1.png -------------------------------------------------------------------------------- /images/rectangles_random2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_random2.png -------------------------------------------------------------------------------- /images/rectangles_random65536.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_random65536.jpeg -------------------------------------------------------------------------------- /images/rectangles_similar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_similar.png -------------------------------------------------------------------------------- /images/rectangles_spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_spritesheet.png -------------------------------------------------------------------------------- /images/rectangles_spritesheet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_spritesheet2.png -------------------------------------------------------------------------------- /images/rectangles_squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/images/rectangles_squares.png -------------------------------------------------------------------------------- /packsharp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThomasMiz/RectpackSharp/HEAD/packsharp-logo.png --------------------------------------------------------------------------------