I'm trying to find a way to implement catmull-rom splines on the android platform for the purpose of smoothly drawing a line through n points. Ideally I would be able to adapt cubic beziers via the Path and its cubicTo method as alluded to in this thread: How do I draw a curve through tree points in Android?

Unfortunately, I wasnt able to follow the implementation there so I'm hoping somebody out there has already done this and can share a few lines of sample code.

Thanks!

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

This game development library for Android seems to have Catmull-Rom splines implemented: http://code.google.com/p/libgdx/.

p.s., you tagged Bezier, that's incorrect -- that's the type of curve that uses control points outside the curve which have external influences :)

link|improve this answer
Thanks :) I thought I might get some flak for tag- only tagged it because it seems that there is a way on android to implement the catmull rom spline using cubic beziers. – Nick Apr 9 '11 at 3:11
It seems to be possible, but the equations are probably so complex you don't want to go there :) You'd lose more CPU in the conversion than in any underlying acceleration (if any). – Chris Dennett Apr 9 '11 at 3:59
Converting a Bezier curve to a Catmull-Rom (or vice-versa) is as simple as multiplying by the correct matrices. – RustyTheBoyRobot Mar 28 at 12:54
feedback

Your Answer

 
or
required, but never shown

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