OP 24 January, 2020 - 08:33 PM
This is similar to how graphics apps (photoshop, figma etc) select curved lines with a mouse click. I want to be able to find if a point is on a Bézier curve? The curve can have many degrees but I am able to split them into multiple cubic beziers (this is how the renderer renders these curves). I thought to try to solve the “t” parameter of the curve given the control points (control points will denote the constant that you multiply to the variable) and if “t” is more than 1 or less than 0, it means that it is not on the curve. However, I have had no luck on this. Approximation also failed. I do not have a lot of experience on this; so, it is very hard for me to find a guide or a tutorial on various techniques.