I'm working on implementing bezier handles into my application. I have points and I need to figure out weather the current direction of the new point is clockwise or counter clockwise. This is because my bezier interpolation algorithm calculates the handles from right to left.
Therefore no matter what it interpolates: P1 P1.righthandle P2 P2.lefthandle to achieve cubic bezier
How can I figure out if the shape is CW or CCW. Thanks