Skip to content

Commit

Permalink
fixed import references in treemap.layout
Browse files Browse the repository at this point in the history
  • Loading branch information
gka committed Aug 1, 2011
1 parent 70333e7 commit bec3474
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion examples/PureAS3/src/Main.as
Expand Up @@ -4,6 +4,8 @@ package
import flash.events.Event;
import net.vis4.treemap.layout.RecursiveSquarifyLayout;
import net.vis4.treemap.layout.SliceAndDiceLayout;
import net.vis4.treemap.layout.SquarifyLayout;
import net.vis4.treemap.layout.StripLayout;
import net.vis4.treemap.TreeMap;

/**
Expand All @@ -19,7 +21,8 @@ package
//var treemap:TreeMap = new Treemap();
var recSqLayout:RecursiveSquarifyLayout = new RecursiveSquarifyLayout();
var slice:SliceAndDiceLayout = new SliceAndDiceLayout();

var squar:SquarifyLayout = new SquarifyLayout();
var strip:StripLayout = new StripLayout();
}

}
Expand Down
2 changes: 2 additions & 0 deletions source/net/vis4/treemap/layout/SquarifyLayout.as
Expand Up @@ -25,6 +25,8 @@
package net.vis4.treemap.layout
{
import flash.geom.Rectangle;
import net.vis4.treemap.data.TreeMapItemLayoutData;
import net.vis4.treemap.renderer.ITreeMapBranchRenderer;

/**
* The squarify treemap layout algorithm creates nodes that are unordered,
Expand Down
2 changes: 2 additions & 0 deletions source/net/vis4/treemap/layout/StripLayout.as
Expand Up @@ -25,6 +25,8 @@
package net.vis4.treemap.layout
{
import flash.geom.Rectangle;
import net.vis4.treemap.data.TreeMapItemLayoutData;
import net.vis4.treemap.renderer.ITreeMapBranchRenderer;

/**
* The strip treemap layout algorithm creates nodes that are ordered,
Expand Down
2 changes: 1 addition & 1 deletion source/readme.md
@@ -1,7 +1,7 @@
as3treemap
==========

This will be a pure AS3 fork of Josh Tynjala's TreeMap Component for Adobe Flex.
net.vis4.treemap will be a pure AS3 fork of Josh Tynjala's TreeMap Component for Adobe Flex (com.flextoolbok)


Still in a very early stage..

0 comments on commit bec3474

Please sign in to comment.