I'm using paper.js and i'm trying to animate an item along a path I created...
//Path : path = new Path(); path.add(new Point(0,100), new Point(120,100), new Point(120,150)); //Item circle = new Path.Circle(0,100,4); circle.strokeColor = "#EEE"; And while animating (with onFrame()) I want the circle to follow the path... Does anyone know how to do that? I didn't found it in the doc or on google.... I hope it's clear enough..
Thanks for the answers!