const opts = {
tailLength: 10,
arrowSize: 20,
tailThickness: 5,
angleRadian: degreeToRadian(45)
}
const arrow = Shapes.arrow({x:100, y:100}, `tip`, opts); // Yields an array of points
// Eg: draw points
Drawing.connectedPoints(ctx, arrow, {strokeStyle: `red`, loop: true});
Returns the points forming an arrow.