elbowdonkey / axonome

javascript isometric rendering kit

This URL has Read+Write access

elbowdonkey (author)
Thu Oct 08 09:51:45 -0700 2009
commit  83f8c9e748af055f2ef3a43c33ed3d01ba764698
tree    fb7f2a4ae2e45e0187561136f02ef5c5e9a3a288
parent  8ef8f19f0476ad53b99ed076a282581ed910a2a3
README.markdown

axono.me is a lightweight Javascript isometric pixel art grid library.

  • fully test driven using Screw Unit
  • small, mostly essentials only footprint
  • a* pathfinding
  • silly things, like a letter renderer

Examples

Here's how you'd render a 6x6 isometric grid using jQuery.

$(document).ready(function(){
  $('#board').iso();
    });

The Iso object handles rendering as well as representing the grid as Javascript objects.

See the demos for more examples.

Why axono.me?

Most of the pixel art we see today is said to be represented in an isometric projection. Though, in truth, it's actually done in dimetric projection, both isometric and dimetric projections are considered kinds of axonometric projections.

axono.me has been designed to render axonometric projections. Though it works fine for any kind of grid. Check out the demos for examples of non-axonometric projections.

Useful resources