├── .gitignore ├── README.md ├── Rakefile ├── VERSION ├── examples ├── example_helpers.rb ├── plotting_example.rb └── roller_coaster.rb ├── fixtures ├── input.mcr └── painted.mcr ├── images ├── cone.png ├── gnuplotSurface10.png ├── gnuplotSurface15.png ├── goldSineRollerCoaster.png ├── halfSphere.png ├── hyperbolicParaboloid.png ├── onthesineRollerCoaster.png ├── orangeTower.png ├── paraboloid.png ├── plottingOverview.png ├── polynomial.png ├── polynomialQuotient.png └── rotatedSine.png ├── lib ├── rubycraft.rb └── rubycraft │ ├── block.rb │ ├── block_type.rb │ ├── byte_converter.rb │ ├── chunk.rb │ ├── matrix3d.rb │ ├── nbt_helper.rb │ └── region.rb ├── rubycraft.gemspec └── spec ├── acceptanceEdit.rb ├── block_spec.rb ├── chunk_helper.rb ├── chunk_spec.rb ├── matrix3d_spec.rb ├── region_spec.rb └── rspec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.1 -------------------------------------------------------------------------------- /examples/example_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/examples/example_helpers.rb -------------------------------------------------------------------------------- /examples/plotting_example.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/examples/plotting_example.rb -------------------------------------------------------------------------------- /examples/roller_coaster.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/examples/roller_coaster.rb -------------------------------------------------------------------------------- /fixtures/input.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/fixtures/input.mcr -------------------------------------------------------------------------------- /fixtures/painted.mcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/fixtures/painted.mcr -------------------------------------------------------------------------------- /images/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/cone.png -------------------------------------------------------------------------------- /images/gnuplotSurface10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/gnuplotSurface10.png -------------------------------------------------------------------------------- /images/gnuplotSurface15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/gnuplotSurface15.png -------------------------------------------------------------------------------- /images/goldSineRollerCoaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/goldSineRollerCoaster.png -------------------------------------------------------------------------------- /images/halfSphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/halfSphere.png -------------------------------------------------------------------------------- /images/hyperbolicParaboloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/hyperbolicParaboloid.png -------------------------------------------------------------------------------- /images/onthesineRollerCoaster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/onthesineRollerCoaster.png -------------------------------------------------------------------------------- /images/orangeTower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/orangeTower.png -------------------------------------------------------------------------------- /images/paraboloid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/paraboloid.png -------------------------------------------------------------------------------- /images/plottingOverview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/plottingOverview.png -------------------------------------------------------------------------------- /images/polynomial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/polynomial.png -------------------------------------------------------------------------------- /images/polynomialQuotient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/polynomialQuotient.png -------------------------------------------------------------------------------- /images/rotatedSine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/images/rotatedSine.png -------------------------------------------------------------------------------- /lib/rubycraft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft.rb -------------------------------------------------------------------------------- /lib/rubycraft/block.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/block.rb -------------------------------------------------------------------------------- /lib/rubycraft/block_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/block_type.rb -------------------------------------------------------------------------------- /lib/rubycraft/byte_converter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/byte_converter.rb -------------------------------------------------------------------------------- /lib/rubycraft/chunk.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/chunk.rb -------------------------------------------------------------------------------- /lib/rubycraft/matrix3d.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/matrix3d.rb -------------------------------------------------------------------------------- /lib/rubycraft/nbt_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/nbt_helper.rb -------------------------------------------------------------------------------- /lib/rubycraft/region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/lib/rubycraft/region.rb -------------------------------------------------------------------------------- /rubycraft.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/rubycraft.gemspec -------------------------------------------------------------------------------- /spec/acceptanceEdit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/acceptanceEdit.rb -------------------------------------------------------------------------------- /spec/block_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/block_spec.rb -------------------------------------------------------------------------------- /spec/chunk_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/chunk_helper.rb -------------------------------------------------------------------------------- /spec/chunk_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/chunk_spec.rb -------------------------------------------------------------------------------- /spec/matrix3d_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/matrix3d_spec.rb -------------------------------------------------------------------------------- /spec/region_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/region_spec.rb -------------------------------------------------------------------------------- /spec/rspec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danielribeiro/RubyCraft/HEAD/spec/rspec_helper.rb --------------------------------------------------------------------------------