Skip to content

Instantly share code, notes, and snippets.

View SineVector241's full-sized avatar
:shipit:
That one idiot in the background

SineVector241

:shipit:
That one idiot in the background
View GitHub Profile
@ttalexander2
ttalexander2 / BinaryTreePacker.cs
Last active December 18, 2024 21:11
Binary Tree Image Packer for C# ( .NET Framework)
using System;
using System.Drawing;
namespace TexturePacker
{
public class PackedNode
{
public PackedNode Left { get; private set; }
public PackedNode Right { get; private set; }
public System.Drawing.Rectangle Rect { get; private set; }