up vote 1 down vote favorite
share [g+] share [fb]

I need an ActionScript 3 library that renders randomized splines with a set amount of loops in the spline, and while I'm Googling, I was hoping someone could recommend some library that I could perhaps download for this purpose.

Thanks in advance!

link|improve this question

I don't think there would be a tailor made library available for this. You will have to generate random cubic splines (how do you make sure there is a loop in it?) and convert them into quad splines (as the AS Graphics::curveTo method draws only quad curves). Waiting to see if there is such a curve library available. – Amarghosh Nov 25 '09 at 12:52
feedback

1 Answer

up vote 1 down vote accepted

You can have a look at Degrafa, plenty of splines there. They were implemented by Jim Armstrong, it's worth checking out his site. Loads of explanations for Cardinal Splines, Catmull-Rom Splines, Hermite Curves, etc.

Depends what exactly you're trying to achieve. I'd say have look on Wikipedia at different types of curves, find the one that best suits your needs, then google.

HTH

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.