Returns the edge that is opposite to a given vertex.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Edge OppositeEdge(
	Point vertex
)
Visual Basic (Declaration)
Public Function OppositeEdge ( _
	vertex As Point _
) As Edge
Visual C++
public:
Edge^ OppositeEdge(
	Point^ vertex
)

Parameters

vertex
Type: ceometric.VectorGeometry..::.Point
A vertex of the triangle.

Return Value

the edge that is opposite to a given vertex.

Returns null if vertex is not a vertex of the triangle.

See Also