I am using the Raphael Javascript library to construct cubic bezier curves. I need to get a straight segment at the very end of my curve that is a consistent length regardless the length or structure of the larger curve. However when I place one point at the end of the curve and try to position the second 25 units back from the first, the actual distance between the points varies as I modify the curve. Is there a way to get a straight segment at the end of my curve that is always the same length in pixels? I am guessing this has to do with vector units being translated to actual pixels on the screen but I have found little in the way of specifics on how to remedy such inconsistencies. Thank you for any help you can provide!

link|improve this question

Please clarify what you mean by 'consistent length'. Do you mean "Take a circle of radius 25 centered at the end of the path and find the point where this circle intersects the curve", or do you mean "find the point along the swervy road defined by the curve that is 25px away from the end"? – Phrogz Apr 5 '11 at 21:40
feedback

1 Answer

up vote 0 down vote accepted

If you are looking for length-along-the-path, you want to use getPointAtLength():

var pt = myPath.getPointAtLength( myPath.getTotalLength() - 25 );

This will give you an SVGPoint in the local space of the parent of the path.

You can see an example using this method (and more) to sample regularly along a path here:
http://phrogz.net/SVG/convert_path_to_polygon.xhtml

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.