I have a line and point (2D).
Ok, using Paul Bourke formula I can get the distance of ortogonal projection of point to the line.
( Also I can know if the solution is or not inside the segment of line. )
OK, But I'd like to know if the point is at right or left side relative to the line direction.
I can get the angle between line and ortogonal line using
Math.acos (crossproduct/moduleProduct)
but crossproduct is zero so I can't use it...
Any idea ? Have to use trigonometric approach or maybe is there a trick using vector data ? Th. in advance,