├── .gitignore ├── IsoVoxel.sln ├── IsoVoxel ├── App.config ├── Extensions.cs ├── IsoVoxel.csproj ├── PaletteDraw.cs ├── Properties │ └── AssemblyInfo.cs ├── Red_Fish.vox ├── Red_Fish_Animated.vox ├── Tank.vox ├── Tank_Old.vox ├── Tank_X.vox ├── TransformLogic.cs ├── Truck.vox ├── Truck_Large.vox ├── Truck_Small.vox ├── VoxScaler.cs ├── Zombie.vox ├── cube.png ├── cube_gray.png ├── cube_ortho.png ├── cube_soft.png ├── gradient.png ├── icon.ico ├── outline.png └── white.png ├── LICENSE ├── README.md ├── RedFish.gif └── Usage.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/.gitignore -------------------------------------------------------------------------------- /IsoVoxel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel.sln -------------------------------------------------------------------------------- /IsoVoxel/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/App.config -------------------------------------------------------------------------------- /IsoVoxel/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Extensions.cs -------------------------------------------------------------------------------- /IsoVoxel/IsoVoxel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/IsoVoxel.csproj -------------------------------------------------------------------------------- /IsoVoxel/PaletteDraw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/PaletteDraw.cs -------------------------------------------------------------------------------- /IsoVoxel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IsoVoxel/Red_Fish.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Red_Fish.vox -------------------------------------------------------------------------------- /IsoVoxel/Red_Fish_Animated.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Red_Fish_Animated.vox -------------------------------------------------------------------------------- /IsoVoxel/Tank.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Tank.vox -------------------------------------------------------------------------------- /IsoVoxel/Tank_Old.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Tank_Old.vox -------------------------------------------------------------------------------- /IsoVoxel/Tank_X.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Tank_X.vox -------------------------------------------------------------------------------- /IsoVoxel/TransformLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/TransformLogic.cs -------------------------------------------------------------------------------- /IsoVoxel/Truck.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Truck.vox -------------------------------------------------------------------------------- /IsoVoxel/Truck_Large.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Truck_Large.vox -------------------------------------------------------------------------------- /IsoVoxel/Truck_Small.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Truck_Small.vox -------------------------------------------------------------------------------- /IsoVoxel/VoxScaler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/VoxScaler.cs -------------------------------------------------------------------------------- /IsoVoxel/Zombie.vox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/Zombie.vox -------------------------------------------------------------------------------- /IsoVoxel/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/cube.png -------------------------------------------------------------------------------- /IsoVoxel/cube_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/cube_gray.png -------------------------------------------------------------------------------- /IsoVoxel/cube_ortho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/cube_ortho.png -------------------------------------------------------------------------------- /IsoVoxel/cube_soft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/cube_soft.png -------------------------------------------------------------------------------- /IsoVoxel/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/gradient.png -------------------------------------------------------------------------------- /IsoVoxel/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/icon.ico -------------------------------------------------------------------------------- /IsoVoxel/outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/outline.png -------------------------------------------------------------------------------- /IsoVoxel/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/IsoVoxel/white.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/README.md -------------------------------------------------------------------------------- /RedFish.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/RedFish.gif -------------------------------------------------------------------------------- /Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tommyettinger/IsoVoxel/HEAD/Usage.txt --------------------------------------------------------------------------------