├── .github └── workflows │ └── build-and-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── StbRectPackSharp.sln ├── generation ├── StbRectPackSharp.Generator.sln └── StbRectPackSharp.Generator │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StbRectPackSharp.Generator.csproj │ └── stb_rect_pack.h ├── src ├── CRuntime.cs ├── Packer.cs ├── StbRectPack.Generated.cs ├── StbRectPack.cs └── StbRectPackSharp.csproj └── tests ├── StbRectPackSharp.Tests ├── StbRectPackSharp.Tests.csproj └── Tests.cs └── StbRectPackSharp.VisualizePacking ├── Fonts └── DroidSans.ttf ├── Program.cs ├── StbRectPackSharp.VisualizePacking.csproj └── VisualizerGame.cs /.github/workflows/build-and-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/.github/workflows/build-and-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/README.md -------------------------------------------------------------------------------- /StbRectPackSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/StbRectPackSharp.sln -------------------------------------------------------------------------------- /generation/StbRectPackSharp.Generator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/generation/StbRectPackSharp.Generator.sln -------------------------------------------------------------------------------- /generation/StbRectPackSharp.Generator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/generation/StbRectPackSharp.Generator/App.config -------------------------------------------------------------------------------- /generation/StbRectPackSharp.Generator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/generation/StbRectPackSharp.Generator/Program.cs -------------------------------------------------------------------------------- /generation/StbRectPackSharp.Generator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/generation/StbRectPackSharp.Generator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /generation/StbRectPackSharp.Generator/StbRectPackSharp.Generator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/generation/StbRectPackSharp.Generator/StbRectPackSharp.Generator.csproj -------------------------------------------------------------------------------- /generation/StbRectPackSharp.Generator/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/generation/StbRectPackSharp.Generator/stb_rect_pack.h -------------------------------------------------------------------------------- /src/CRuntime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/src/CRuntime.cs -------------------------------------------------------------------------------- /src/Packer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/src/Packer.cs -------------------------------------------------------------------------------- /src/StbRectPack.Generated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/src/StbRectPack.Generated.cs -------------------------------------------------------------------------------- /src/StbRectPack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/src/StbRectPack.cs -------------------------------------------------------------------------------- /src/StbRectPackSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/src/StbRectPackSharp.csproj -------------------------------------------------------------------------------- /tests/StbRectPackSharp.Tests/StbRectPackSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/tests/StbRectPackSharp.Tests/StbRectPackSharp.Tests.csproj -------------------------------------------------------------------------------- /tests/StbRectPackSharp.Tests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/tests/StbRectPackSharp.Tests/Tests.cs -------------------------------------------------------------------------------- /tests/StbRectPackSharp.VisualizePacking/Fonts/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/tests/StbRectPackSharp.VisualizePacking/Fonts/DroidSans.ttf -------------------------------------------------------------------------------- /tests/StbRectPackSharp.VisualizePacking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/tests/StbRectPackSharp.VisualizePacking/Program.cs -------------------------------------------------------------------------------- /tests/StbRectPackSharp.VisualizePacking/StbRectPackSharp.VisualizePacking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/tests/StbRectPackSharp.VisualizePacking/StbRectPackSharp.VisualizePacking.csproj -------------------------------------------------------------------------------- /tests/StbRectPackSharp.VisualizePacking/VisualizerGame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StbSharp/StbRectPackSharp/HEAD/tests/StbRectPackSharp.VisualizePacking/VisualizerGame.cs --------------------------------------------------------------------------------