Tests if the triangle shares at least one vertex with another triangle.

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

Syntax

C#
public bool SharesVertexWith(
	Triangle triangle
)
Visual Basic (Declaration)
Public Function SharesVertexWith ( _
	triangle As Triangle _
) As Boolean
Visual C++
public:
bool SharesVertexWith(
	Triangle^ triangle
)

Parameters

triangle
Type: ceometric.VectorGeometry..::.Triangle
A triangle.

Return Value

Returns true if the triangle shares at least one vertex with triangle, false otherwise.

See Also