Gets or sets the first vertex

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

Syntax

C#
public Point Vertex1 { get; set; }
Visual Basic (Declaration)
Public Property Vertex1 As Point
Visual C++
public:
property Point^ Vertex1 {
	Point^ get ();
	void set (Point^ value);
}

Field Value

The first vertex of the triangle.

Remarks

Setting a vertex also changes the normal vector of the triangle.

Exceptions

ExceptionCondition
System..::.ArgumentExceptionThe vertex was set collinear to the other two vertices.

See Also