I have been searching for a way to do turtle-style relative drawing in paper.js, but haven't found anything. I tried to use point.angle and point.length but angle didn't really affect anything and length only changed the distance from the origin (0,0).
The ideal way would be to be able to move the point by specifying distance and direction.
It could probably be custom-implemented by just knowing the previous points position and the direction to go and how many pixels, but I'm lost on where to start.