IMO you dont need a third party engine for this. Elastic is an easy property
to model programatically.

var bindX : Number = 100;
var bindY : Number = 100;
var x : Number = bindX:
var y : Number = bindY;
var nodeVelX : Number = 3;
var nodeVelY : Number = 2;

function update() : void
{
    nodeVelX += (bindX-x)/4;
    nodeVelY += (bindY-y)/4;
    x += nodeVelX;
    y += nodeVelY;
    nodeVelX *= 0.99;
    nodeVelY *= 0.99;
}

or something simmilar to that.



2008/10/3 Ali Drongo <[EMAIL PROTECTED]>

> Hiya, I want to create something very similar to visualthesaurus.com,
> dyamically generating nodes with labels that are linked by elastic.
>
> I'm thinking of using the APE from cove.org
>
> If anyone can point me in the way of any tutorials/alternative approaches
> or existing source that would be amazing!
>
>
> Thanks,
> Ali
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>



-- 
Mike Cann
http://www.artificial-studios.co.uk/
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to