Returns the vertex that is opposite to the given edge.

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

Syntax

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

Parameters

edge
Type: ceometric.VectorGeometry..::.Edge
An edge of the triangle.

Return Value

The vertex that is opposite to the given edge.

Returns null if edge is not an edge of the triangle.

See Also