Point2d.Side Method

Check the relative side of a point to a infinite line passing through two given points.
Public Function Side( _ 
ByVal p0 As Point2d, _ 
ByVal p1 As Point2d, _ 
ByVal tol As Double
) As Side
This language is not supported or no code example is available.
public Side Side( 
Point2d p0
Point2d p1
double tol 
)
This language is not supported or no code example is available.
public:  
Side Side( 
Point2d^ p0
Point2d^ p1
double tol 
)
This language is not supported or no code example is available.
public function Side( 
p0 : Point2d
p1 : Point2d
tol : double 
) : Side;
This language is not supported or no code example is available.

Parameters

p0
Point2d

First point on the infinite line.

p1
Point2d

Second point on the infinite line.

tol
double

If the distance from point to line is less than this, side is 'On'.

Return Value

Side

The side of the point (Left,Right or On).

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition