I have a path that I am drawing between two points using a single call Path.cubicTo. I now have the requirement to have that path drawn in two path segment based on a variable position in the path.
I need the path to look like the original single cubicTo call, but I need to have it actually be two separate calls between two separate sets of points?
My ultimate goal is to have to path look identical to the single call, but with the exception that a variable amount of the path is drawn in a different color.