Triangle Constructor
Triangle(PointF, PointF, PointF)
Initializes a new instance of the Triangle struct from its three vertices.
Declaration
public Triangle(PointF a, PointF b, PointF c)
Public Sub New(a As PointF, b As PointF, c As PointF)
Parameters
Type |
Name |
Description |
PointF |
a |
The triangle's first vertex.
|
PointF |
b |
The triangle's second vertex.
|
PointF |
c |
The triangle's third vertex.
|