Here is a image:
I have two vectors : os, oe
the range between them is always from os (start) to oe (end).
So in this image the range between is a angle of 270°.
Then I have two vector to check: oa, ob
As you can see the vector oa should be within the range formed by osoe and the vector ob should be outside.
I am wondering if there is a way to do the check using only vector math (such as cross product dot product).
I tried to use cross product with clockwise/counter clockwise check but it seems like when the angle in between is larger then 180°, things get complex.
Any advice will be appreciated, thanks :)