This example finds an array of approximately evenly spaced points along an entire Path.
It decomposes all Path segments created with context.lineTo, context.quadraticCurveTo and/or context.bezierCurveTo into points along that Path.
Usage
// Path related variables
var A={x:50,y:100};
var B={x:12...