Given a point $Q$ and $2d$ Cubic Bezier Curve: $$P = A(1-t)^3 + 3Bt(1-t)^2 + 3Ct^2(1-t) + Dt^3$$
Is there a way to know which side of the curve the point lies on? I know that the term "side" is a bit strange since there can be a loop, but I'm wondering if answering this question might be more easily done than finding a points distance to the curve, which would require solving a cubic equation.
I found info about finding the distance via a cubic root here: http://www.pouet.net/topic.php?which=9119&page=1
That isn't super complex, but if answering a side question makes things easier, I'm hoping it'll extend to higher order curves or higher dimension curves.
If this is more easily solved with a quadratic curve instead of a cubic bezier curve that would also be helpful!
$$P = A(1-t)^2 + 2Bt(1-t) + Ct^2$$
Thanks for any info!!