Quadrilateral Constructor(PointF,PointF,PointF,PointF)
In This Topic
Initializes a new instance of the
Quadrilateral struct from the four corners of a rectangle.
The vertices's of the quadrilateral correspond to the corners of the rectangle clockwise starting from the bottom left vertex.
Syntax
'Declaration
Public Function New( _
ByVal As System.Drawing.PointF, _
ByVal As System.Drawing.PointF, _
ByVal As System.Drawing.PointF, _
ByVal As System.Drawing.PointF _
)
public Quadrilateral(
System.Drawing.PointF ,
System.Drawing.PointF ,
System.Drawing.PointF ,
System.Drawing.PointF
)
Parameters
- bottomLeft
- The rectangle's bottom left corner.
- topLeft
- The rectangle's top left corner.
- topRight
- The rectangle's top right corner.
- bottomRight
- The rectangle's bottom right corner.
See Also