http://www.emgu.com
Determine which side of the line the 2D point is at
Namespace: Emgu.CV.StructureAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic int Side(
Point point
)
Public Function Side (
point As Point
) As Integer
public:
int Side(
Point point
)
member Side :
point : Point -> int
Parameters
- point
- Type: System.DrawingPoint
the point
Return Value
Type:
Int32
1 if on the right hand side;
0 if on the line;
-1 if on the left hand side;
See Also