Plane3d.Side Method

Computes a side of a point relative the plane. If the point is on the same side as the normal points to, Side.Right is returned. If the point is within 'tol' tolerance on the plane (in a dot product) Side.On is returned. Else Side.Left is returned.
Public Function Side( _ 
ByVal pt As Point3d, _ 
ByVal tol As Double
) As Side
This language is not supported or no code example is available.
public Side Side( 
Point3d pt
double tol 
)
This language is not supported or no code example is available.
public:  
Side Side( 
Point3d^ pt
double tol 
)
This language is not supported or no code example is available.
public function Side( 
pt : Point3d
tol : double 
) : Side;
This language is not supported or no code example is available.

Parameters

pt
Point3d

tol
double

Return Value

Side

.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