Giter Site home page Giter Site logo

cubed.js's Introduction

cubed.js


** WARNING: HERE BE DRAGONS **

A library for handling voxel graphics in a 3d environment.

Some example usage:

var voxels = [
    {position: {x: 0, y: 0, z: 0}, value: 'foo'}
  , {position: {x: 1, y: 0, z: 0}, value: 'foo'}
  , {position: {x: 0, y: 1, z: 0}, value: 'foo'}
];
// create a grid of voxels that's 3x3x3 (27 total voxels)
var grid = cubed.grid.create({size: {x: 3, y: 3, z: 3}, values: voxels});
// each chunk is 16x16x16 voxels - limits imposed by 3d hardware
var chunks = cubed.grid.generate(grid, {x: 16, y: 16, z: 16}, 1, []);

// do stuff with chunks which contain mesh data

TODO:

  • Make sure the interface for generating a grid of chunks is nailed down as documented.
  • Need to account for voxel information - which voxel type is in this cell? Does cubed.js manage a voxel type legend or does the consumer?
  • Account for UV data for texture atlasing.

cubed.js's People

Contributors

loganbarnett avatar dependabot[bot] avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.