Quadrilateral
The Quadrilateral
class represents a quadrilateral shape in 2D space. It contains an array of four Point objects, which represent the vertices of the quadrilateral.
Definition
Namespace: Dynamsoft.Core
Assembly: Dynamsoft.Core.dll
public class Quadrilateral
Attributes
Attribute | Type |
---|---|
points |
Point |
points
The array of points that define the quadrilateral.
Point[] points;
See Also
Methods
Method | Description |
---|---|
Quadrilateral |
Initializes a new instance of the Quadrilateral class with default values. |
this |
Gets or sets the point at the specified index in the quadrilateral. |
Quadrilateral
Initializes a new instance of the Quadrilateral
class with default values.
Quadrilateral()
This
Gets or sets the point at the specified index in the quadrilateral.
Point this[int index]
Parameters
[in] index
The index of the point to get or set.
Return Value
Returns the point at the specified index.
See Also